Advertisement
bowenac

Untitled

Apr 12th, 2013
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script>
  2. $(document).ready(function () {
  3.   $('#product-details').children().hide();
  4.   $('.productBenefits').show();
  5.   $("#buttoncollection li:nth-child(1)").addClass('selected');
  6.   $('#buttoncollection .showHide').click(function (event) {
  7.     $('#product-details').children().hide();
  8.     $('#product-details .' + event.target.id).fadeIn(500);
  9.   });
  10. });
  11. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement