hi sir..may i ask u smthing..?
if there are 2 window.onload statements in a single page, how can we make both of them functioned?
i have window.onload = startBlink; and window.onload=function() {}
can u help me sir?..
You can do it like this:
- Code: Select all
window.onload=function()
{
//Whatever codes here
startBlink();
}
See if it helps.
P.S. Don't use PM, this is a public board and members
might have the same problem as yours.



