Skip to content Skip to sidebar Skip to footer

Menu Code Doesn't Work

HTML code:

You have selected services

Solution 1:

See this: http://jsfiddle.net/9X9fL/5/

$(document).ready(function(){
   $('.shop-toggle').click(function() {
      $this = $(this);
       $this.prev().find('.shop-content').slideToggle(300,function(){
         $this.find("p").toggle();
      });
   });
});

Html:

<div  class="shop-toggle">
    <p style="display: none;">Buy</p>
    <p <img class="close" src="images/close.png" alt="" />Close</p>
</div>

Post a Comment for "Menu Code Doesn't Work"