HTML5 dragleave fired when hovering a child element

The problem I’m having is that the dragleave event of an element is fired when hovering a child element of that element. Also, dragenter is not fired when hovering back the parent element again. I made a simplified fiddle: http://jsfiddle.net/pimvdb/HU6Mk/1/. HTML: <div id=”drag” draggable=”true”>drag me</div> <hr> <div id=”drop”> drop here <p>child</p> parent </div> with the … Read more