Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 4th, 2012  |  syntax: None  |  size: 0.66 KB  |  hits: 13  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  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();