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').BootSideMenu({
        side: "left"
    });
});
                    By default it remembers its last opened status and push the body while it slide. To disable these features use the options:
remember:false
pushBody:false
Watch this changes in the next example.