cycle:
- element onclick
- someobject.removeChild(objParent) - this is a parent container div of element in step 1
- document.click event is never fired. In Firefox it does still fire the event.
Fix: setTimeout(object.removeChild(objParent), 0); will not cancelbubble and continue to fire document.click in IE aswell.
Is this normal behaviour for IE!??