I have a containing div, which acts as a button all by itself...
When clicked though, I have it setup to expand and reveal more information, at the same time revealing a close button on the top right...
Now, When i click the close button, the close function executes, but also the div's onclick to open, so the end result is, well... Nothing happens...
Lol...
The fiddle example isn't working either, and I'm near the end of my wits...
/
I have a containing div, which acts as a button all by itself...
When clicked though, I have it setup to expand and reveal more information, at the same time revealing a close button on the top right...
Now, When i click the close button, the close function executes, but also the div's onclick to open, so the end result is, well... Nothing happens...
Lol...
The fiddle example isn't working either, and I'm near the end of my wits...
http://jsfiddle/VeyeY/5/
Share Improve this question asked Jun 14, 2011 at 8:43 AbhishekAbhishek 4,35012 gold badges43 silver badges52 bronze badges3 Answers
Reset to default 12You could either return false from the onclick to close the div. That will make sure that the click event is not propagated.
Another solution would be to call preventDefault()
and stopPropagation()
on the event itself. That will also make sure that the event does not go on.
Edit:
In all the Events that happens ( onclick, onchange, onmouseover, etc ) there is always an event variable possible that you can either ignore if you want to, or extract information from. In your example I think the easiest way to work with the event variable would be to do something like this:
<div id="inner" onclick="toggle(false); event.preventDefault(); event.stopPropagation();">
Now this is a bit ugly to look at and you really dont want to deal with this in the html markup either so another option would be to pass the event variable to your function like this:
<div id="inner" onclick="toggle(event, false)">
and then in the javascript:
function toggle(event, x){
// Do your thing
event.preventDefault();
event.stopPropagation();
}
There are a lot of things you could do with the event variable. For example, instead of passing true or false to your function, you could check which node that originated the event like this:
if(event.originalTarget.id == "inner"){
// Inner was clicked
}else if(event.originalTarget.id == "outer"){
// Outer was clicked
}
UPDATED You can:
Put a
margin-top
on#inner
so the user won't click both simultaneously (or an offset of some kind from the top edge of#outer
). (Update: rejected, CSS solution)Or, fire a different function for each
div
, likeinnerToggle()
andouterToggle()
. This way you can even call one, from the other. (Update: Fiddled here, led to solution 2a.)2a. Another way to do it is just fire the event for
#outer
only? If#inner
is clicked, the event will bubble up and#outer
will fire a toggle, as seen here.Or, disable the click event for one or the other as required. (Update: See @DanneMarne's solution.)
Or, set a custom property on each object, such as
$('outer').toggled = false
which will record the current state of each object. (Update: Never mind, not very helpful).
Update: So, after a bit of testing, I'd go with 2a.
You can disable the DIVs click function after revealing. And you can re-enable that click function when close button is pressed.