I have a div containing several clickable, draggable and resizable elements. I also want these moving elements to disappear behind a partially transparent (background) image. All of this works great on anything but Internet Exploder.
my code (minimized to the point of causing the problem) is as follows:
<div id="container" style="z-index: 200; position: absolute"> <div style="position:absolute; width: 20px; height: 80px; background-color: red; opacity: .2"></div> <div id="works">not works</div> </div>
I also created a fiddle here: http://jsfiddle.net/ZUfp5/11/
as you can see on the console, clicking on an element will start the handler, but it will not if you click on the overlay.
shouldn't an event bubble ??
Is there a way I can get this to work, or is Internet explorer crashing again?
UPDATE:
I edited the script to work with firefox, so the problem can be saved in full
source share