if you need any functionality like sliding image or menu , then you can use below code :
$('.menu-ul1').hide();
$('.menu-li1').toggle(function(){
$(this).next('.menu-ul1').slideDown();
},function(){
$(this).next('.menu-ul1').slideUp();
});
No comments:
Post a Comment