Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

window.event alternative in Firefox

I see that window.event or event does not work in Firefox, so I need alternative for this. I don't want to set ANY HTML attributes, just Javascript. I'm within this function and I want to get mouse coordinates from here:

document.onmouseover = function(){
    var mouseX = event.clientX;
    var mouseY = event.clientY;
}

Obviously this won't work in firefox, so I want to know how to do it.

like image 497
Smax Smaxović Avatar asked Apr 02 '14 13:04

Smax Smaxović


1 Answers

This is the typical approach that you'll find in examples everywhere.

document.onmouseover = function(event) {
    event = event || window.event;

    var mouseX = event.clientX;
    var mouseY = event.clientY;
}

The W3C standard way of retrieving the event object is via the first function parameter. Older IE didn't support that approach, so event will be undefined. The || operator lets us fetch the window.event object in that case.

like image 104
cookie monster Avatar answered Oct 15 '22 11:10

cookie monster