Right now I can show a div by clicking a button, and hide it using the same button. That's working fine, but I would also like a user to be able to click outside of the newly shown div or the button to show it, and still hide it.
Hey guys, this is my first time asking a question here, so I'm sorry if I didn't enter the code right or something. Basically I have a button, and I want only one way to open a hidden div (clicking said button), but two ways to close it (clicking the same opening button or elsewhere in the document).
Here is my current code.
//This part works fine for opening and closing, but you can't click outside the button to make it close once opened.<br/>
$(".account").click(function () {
$(".accountlinks").toggle();
$(".account").toggleClass("active");
});
$(document).click(function(e) {
$('.accountlinks').hide();
$(".account").removeClass("active");
});
$('.accountlinks').click(function(e) {
e.stopPropagation();
});
Is there some way to see if it is already opened, and then close it with the document.click function using this $('.account').hasClass('active'); in some way?
Thank you for your help.
$('.accountlinks').hide(); $(".account").removeClass("active");has any effect? – AndreKR Nov 15 '10 at 23:50