Guest User

Untitled

a guest
May 4th, 2012
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. toggle divs with jquery
  2. <div class="product-preview-wrapper">
  3. <div id="wrap">STUFF_one</div>
  4. <div id="wrap">STUFF_two</div>
  5. <div id="wrap">STUFF_three</div>
  6. </div>
  7.  
  8. <div class="product-image-wrapper">
  9. <div class="product-img-thumb-small">OPTION_one</div>
  10. <div class="product-img-thumb-small">OPTION_two</div>
  11. <div class="product-img-thumb-small">OPTION_three</div>
  12. </div>
  13.  
  14. $('.product-image-wrapper .product-img-thumb-small').click(function() {
  15. $('.product-preview-wrapper')
  16. .children()
  17. .eq($(this).index())
  18. .show()
  19. .siblings()
  20. .hide();
  21. });
  22.  
  23. // To load the first one
  24. $('.product-image-wrapper .product-img-thumb-small').eq(0).click();
Advertisement
Add Comment
Please, Sign In to add comment