$()

in content/site/apidocs-9.0.1/search.js [293:304]


    $("button#navbar-toggle-button").click(function (e) {
        if (expanded) {
            collapse();
        } else {
            $("div#navbar-top").height($("#navbar-top").prop("scrollHeight"));
            $("button#navbar-toggle-button")
                .addClass("expanded")
                .attr("aria-expanded", "true");
            expanded = true;
            windowWidth = window.innerWidth;
        }
    });