I have a trouble in this part:
var ex = {
exampl: function(){
var ref=window.event.target||window.event.srcElement; // here
alert(ref.innerHTML); // (example)
}
}
This function is called this way:
document.body.childNodes[0].addEventListener('mouseover',ex.exampl,true);
Only Firefox says that window.event isn’t defined…
I don’t know what to do, to make it work. It works very well in webkit browsers and opera (I can’t check it in MSIE and I don’t care about it).
Why does it happen?
try getting the event using the parameter passed (named
ein this case). i tested this and bothwindow.eventand theeis supported in chrome.try checking for both, whichever exists