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').BootSideMenu.open();
});
$('#btnClose').click(function () {
$('#test').BootSideMenu.close();
});
$('#btnToggle').click(function () {
$('#test').BootSideMenu.toggle();
});
});
Hope this will help Rapid0s and harrisdavidharris
That's all for now. Go back!