Guest User

Untitled

a guest
Dec 12th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. jQuery(document).ready(function() {
  2. if(jQuery(window).width() < 768){
  3. jQuery('.nb-team-grid').on('click', function(e){
  4. jQuery(this).toggleClass('test');
  5. });
  6. }
  7. })
  8.  
  9. $('.nb-team-grid').on('click', function(e){
  10. $(this).toggleClass('test')
  11. $(".nb-team-grid").not(this).removeClass('test');
  12. });
Add Comment
Please, Sign In to add comment