Is it possible to use jQuery’s Draggable with an overlapping PNG image (not as a background image, too, as it needs to be printable)? I’ve tried the CSS style “pointer-events: none,” but this doesn’t work in IE.
<div id="overlap">
<img src="overlapping.png" />
</div>
<div id="draggable">
<img src="photoToDrag.jpg" />
</div>
We finally solved this problem by adding mouse event listeners to the overlay div, and then passing those events to the image. So, any time the PNG overlay
("#frame")is clicked, that click event is passed through to the underlying image("#imageid"). With this solution, we can make the underlying image draggable without the overlay blocking it.The HTML would be setup like: