tor-router/docs/scripts/collapse.js

11 lines
376 B
JavaScript
Raw Normal View History

2018-09-19 15:22:17 +00:00
function hideAllButCurrent(){
//by default all submenut items are hidden
$("nav > ul > li > ul li").hide();
//only current page (if it exists) should be opened
var file = window.location.pathname.split("/").pop();
$("nav > ul > li > a[href^='"+file+"']").parent().find("> ul li").show();
}
$( document ).ready(function() {
hideAllButCurrent();
});