open

Opens the responsive panel.

Example

<nav id="navigation">
    <a href="#">Home</a>
    <a href="#">Products</a>
</nav>

<article>
    <button id="open-button"><span class="k-icon k-i-menu"></span></button>
    Content
</article>

<script>
    $("#navigation").kendoResponsivePanel({
        orientation: "top"
    });

    $("#open-button").click(function(e) {
        e.stopPropagation();
        var panel = $("#navigation").data("kendoResponsivePanel");
        panel.open();
    });
</script>
In this article