/ Published in: PHP
URL: http://gatonet.de
Toggle section titles
Expand |
Embed | Plain Text
/*======== General section title toggle script ==*/ function sectiontoggle(){ $('.section-title').nextAll().hide(); if($('nav').find('.active').length){ $('nav li.active').parents('ul').children('li').show(); } $('.section-title').click( function(){ if($(this).nextAll().is(':hidden')){ $(".section-title").not(this).nextAll().slideUp(); $(this).nextAll().slideDown(); } else { $(this).nextAll().slideUp(); } }); }; sectiontoggle();
You need to login to post a comment.
