In my asp.net User Control I'm adding some script to the window.onload event like so:
if (!Page.ClientScript.IsStartupScriptRegistered(this.GetType(), onloadScriptName))
Page.ClientScript.RegisterStartupScript(this.GetType(), onloadScriptName,
"window.onload = function() {myFunction();};", true);
My problem is, if there is already something in the onload event, than this overwrites it. How would I go about allowing two user controls to each execute javascript in the onload event?
Clarification on Answer: Turns out attachEvent is IE only. Firefox uses attachEventListener, so you need to do something like:
if (window.addEventListener)
{
window.addEventListener('onload', myFunction, false);
}
else if (window.attachEvent)
{
window.attachEvent('onload', myFunction);
}
Edit:Thanks for the info on third party libraries. I'll keep them in mind.
