All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ui.static.menu.js Maven / Gradle / Ivy

The newest version!
$(document).ready(function () {
    let currentNavItemId = $("meta[name='current-nav']").attr("content");
    highlightCurrentNavItem(currentNavItemId)
});

function highlightCurrentNavItem(currentNavItemId) {
    $(".navbar-nav .nav-item").each(function () {
        $(this).removeClass("active");
    });
    if (currentNavItemId) {
        $("#" + currentNavItemId).addClass("active");
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy