Thursday, February 12, 2009

Use javascript to check the loading of the page

document.onreadystatechange=function() {
if (document.readyState=="complete") {
//your work
}
}

No comments: