How to join multiple event handlers in Javascript as in the following scenario :
onClick="doSomething();" onKeyUp="doSomething();" onLoad="doSomething();"
|
How to join multiple event handlers in Javascript as in the following scenario :
| |||
|
feedback
|
| |||
|
feedback
|
|
I suggest using a javascript library's code to add events to abstract browser differences away from yourself. I also suggest passing the event itself to the function(both prototype and jquery do this).
| |||
|
feedback
|