I have a HTML page and a javascript function is attached to the <body> onLoad event. I wanted to show up a message dialog when the page loads. I cannot edit the javascript function attached to this onLoad event due to some reasons. So I created a new javascript file with a single function which will show the message dialog. Then I added this line in my javascript file "window.onload = onPageLoad; " (onPageLoad() is my function which could show the message dialog). I attached this javascript file in my HTML using script tag. When I run this HTML file, onPageLoad() function is not getting called. I want to know whether <body> tag, onLoad event overrides the window onload. If so, can someone help me in implementing this functionality somehow. Please keep in mind that I could not edit my HTML file and I could write only new javascript file. Thanks.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
Yes the body onload will overwrite the window.onload You can ADD your function to the onload:
|
|||||||||
|

domreadyinstead – kjy112 Mar 4 '11 at 14:07