Alıntı
<script type="text/javascript">
$('document').ready(function(){
$('#megamenu-responsive-root li.parent').prepend('<p>+</p>');
$('.menu-toggle').click(function(){
$('.root').toggleClass('open');
});
$('#megamenu-responsive-root li.parent > p').click(function(){
if ($(this).text() == '+'){
$(this).parent('li').children('ul').slideDown(300);
$(this).text('-');
}else{
$(this).parent('li').children('ul').slideUp(300);
$(this).text('+');
}
});
});
</script>