I always get the last onload function, but I need both, Is there any other alternate option without removing any of window.onload event?
window.onload = function(){
alert("first");
}
window.onload = function(){
alert("second");
}
|
I always get the last onload function, but I need both, Is there any other alternate option without removing any of window.onload event?
|
|||
|
|
|
When declaring the second one, you can chain with the first.
You also can make an utility like this :
You'd call it like this :
EDIT : or you may simply do what ThiefMaster suggests... (I'll upvote him !). |
|||||||
|
|
The best solution would be registering the event listener using
You can do this multiple times and it will never overwrite previous listeners. |
|||
|
|
|
try this:
|
||||
|
|