I'm having a secluded problem. I was creating a UI for something using jQuery when all of a sudden the .click() events stopped firing.
This jsFiddle has all of the related code:
If you look at the code, you can see that a <div> with id "target" contains two other <div>s, one with id "red" and one with id "green". Looking at the associated CSS, both have width 100% and are overlapped, but the green has display:none;.
As you can see, the .click() doesn't fire and no alert is shown. However, using this works:
<div id="target" onClick="alert('Clicked!')">
<div id="red"></div>
<div id="green"></div>
</div>
Thanks for the help!
