to keep it short and simple: My hamburger menu doesn't close if i click somewhere else. I tried it in jquery and tried to make it with removeClass and so on, but even with removeClass it didnt work.
Here's the code:
https://jsfiddle.net/dtgd551q/
And i think to just uncheck the checkbox is the simplest way to do it.
Thanks to everyone who can give me help.
You can do this :
You can detect click on any part of the page except the
checkbox
as click oncheckbox
is already working. So,return
command insidee.target.type == "checkbox"
confirms that the clicked element is not the checkbox. Now, if it's not checkbox then check if the menu is already opened. If it is opened then$(elem).trigger('click');
will generate a click on thecheckbox
which will close it.