1
0
mirror of https://github.com/lancedikson/bowser synced 2024-09-28 06:10:45 +00:00
lancedikson_bowser/docs/scripts/collapse.js
Denis Demchenko 7c411be476 Regen docs
2018-09-09 15:08:48 +03:00

11 lines
376 B
JavaScript

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();
});