views:

90

answers:

0

cycle:

  1. element onclick
  2. someobject.removeChild(objParent) - this is a parent container div of element in step 1
  3. 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!??