Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2014
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var count;
  2.  
  3. if ($( ".next_bestsellers a" ).length > 0) {
  4.    
  5.     $( "div.bestsellers div.best_item:nth-child(5)" ).hide();
  6.     $( "div.bestsellers div.best_item:nth-child(6)" ).hide();
  7.    
  8.     $( ".next_bestsellers a" ).click(function() {
  9.         if(count % 2 == 0) {
  10.             $( "div.bestsellers div.best_item:nth-child(5)" ).hide();
  11.             $( "div.bestsellers div.best_item:nth-child(6)" ).hide();
  12.         } else {
  13.             $( "div.bestsellers div.best_item:nth-child(2)" ).show();
  14.             $( "div.bestsellers div.best_item:nth-child(3)" ).show();
  15.         }
  16.         count++;
  17.     });
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement