How to

The menu is on the left and you can control it using these buttons.

     

$(document).ready(function () {
        $('#test').BootSideMenu({
            side: "left",
            closeOnClick: false
        });

        $('#btnOpen').click(function () {
           $("#test").data("BootSideMenu").open();
        });

        $('#btnClose').click(function () {
           $("#test").data("BootSideMenu").close();
        });

        $('#btnToggle').click(function () {
           $("#test").data("BootSideMenu").toggle();
        });
});

Hope this will help Rapid0s and harrisdavidharris

That's all for now. Go back!