How to make window.event in javascript in Firefox
Hi,
Here am sharing the way how we get window.event in Firefox.
The general issue is we get proper object in IE Chrome, but we find issue in Fire fox.
So here is the way we need to handle for fire fox
just give "window.Event" instead of "window.event" for Firefox.( note that E is capital in event.)
Thats all it will work.
// sample code
e = e ? e : window.event; // this works fine in IE
// but in fire fox we need to explicitly give the event so the below code does it.
if(!e)
{
e = window.Event;
}
Hope this helps.
Thanks,
prashanth