I understand the proper way to handle event.stopPropagation for IE is
if(event.stopPropagation) { event.stopPropagation(); } else { event.returnValue = f
We can use this alone: event.cancelBubble = true.
event.cancelBubble = true
Tested working in all browsers.