I'm trying to make panel that opens when it's clicked on the button. I have the button, I have the panel. With click()
event it does open. When that button is pressed again, it does close.
$('#button').click(function() {
$('#panel').toggle();
});
I want to achieve that if user clicks everywhere except on #button
or #panel
, it does close too.
P.S. I tried something like this, but it's not the wanted behavior.
$('#button').mouseenter(function() {
$('#panel').show();
}).mouseleave(function() {
setTimeout(function() {
$('#panel').hide();
}, 2000);
});
Example
Checks to make sure that the element that was clicked [
e.target
] is notelm.is("#button")
elm.is("#panel")
elm.parents("#panel").length>0