collapse.js 376 B

1234567891011
  1. function hideAllButCurrent(){
  2. //by default all submenut items are hidden
  3. $("nav > ul > li > ul li").hide();
  4. //only current page (if it exists) should be opened
  5. var file = window.location.pathname.split("/").pop();
  6. $("nav > ul > li > a[href^='"+file+"']").parent().find("> ul li").show();
  7. }
  8. $( document ).ready(function() {
  9. hideAllButCurrent();
  10. });