You are on page 1of 1

$(document).

ready(function() {
var tooglecat = $('.box-category > ul> li > ul').hide();
$('.box-category > ul> li > a').click(function() {
tooglecat.slideUp();
alert("jjejeje");
$(this).parent().next().slideDown();
return false;
});
});

You might also like