I have made a toggle slide menu with jquery mobile And how to slides back up when click anywhere of div?
this is my jquery script here
<script>
$(document).ready(function () {
$('.gnbLayer').hide();
$(".icGnb5").click(function () {
$(this).toggleClass("on");
$('.gnbLayer').slideToggle('medium');
});
});
</script>