A jQuery plugin to easily create a sliding menu, working on a Bootstrap based application.
The menu will appear on the left.
$(document).ready(function () {
    $('#test-left').BootSideMenu({
        side: "left",
        onTogglerClick: function () {
            alert("You clicked on the arrow!");
        }
    });
});
                    That's all. Go back!