hey i have an offcanva sidebar wich works pretty good. What i would to change is, that the users should close the sidebar by cklicking wherever they whant. For example inside the body.
At the moment is there a close button inside the sidebar which brings it back to default.
function openNav() {
document.getElementById("left-sidebar").style.width = "250px";
}
function closeNav() {
document.getElementById("left-sidebar").style.width = "0";
}
opens sidebar
<a href="#" onclick="openNav()"><i class="icon-menu"></i></a>
close sidebar
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()"></a>