Ajax
Do comment if you like this blog or any post....
Friday, May 15, 2009
Pop up window
This post is moved to
Asp Dot Net Matters
Monday, May 11, 2009
Preload Image - Show Loading Image
To show Loading Image while web page is being load. Simple Javascript is required for it. Just check following JavaScript, you can use it directly... Just replace elementId.
function waitPreloadPage()
{ //DOM
if (document.getElementById){
document.getElementById('LoadImage').style.visibility='hidden';
//window.status="Done";
EnableImages();
}else{
if (document.layers){ //NS4
document.prepage.visibility = 'hidden';
//window.status="Done";
EnableImages();
}
else { //IE4
document.all.prepage.style.visibility = 'hidden';
//window.status="Done";
}
}
}
// End -->
‹
›
Home
View web version