Quantcast
Channel: Powertips » Javascript
Viewing all articles
Browse latest Browse all 10

How to get Event object of Firefox

$
0
0

  1. function getEvent() {
  2.  if (window.event) return window.event;
  3.  else return getEvent.caller.arguments[0];
  4. }
  5.  
  6. function showMessage(){
  7. var e = getEvent();
  8.  
  9. // you can use this e object
  10. }


Viewing all articles
Browse latest Browse all 10

Trending Articles