Full version: jsB@nk » Browser » Page effect » Skip loading
URL: https://www.javascriptbank.com/skip-loading.html
Another script to make the skip-loading effect on your webpages. This JavaScript uses image to make effect more lively.
Full version: jsB@nk » Browser » Page effect » Skip loading
URL: https://www.javascriptbank.com/skip-loading.html
<SCRIPT language=JavaScript type=text/javascript><!--function hideLoadingPage() {if (document.getElementById) { // DOM3 = IE5, NS6document.getElementById('hidepage').style.visibility = 'hidden';}else {if (document.layers) { // Netscape 4document.hidepage.visibility = 'hidden';}else { // IE 4document.all.hidepage.style.visibility = 'hidden';}}}// End -->setTimeout(hideLoadingPage(),3000)</SCRIPT><!-- This script downloaded from www.JavaScriptBank.com Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->
<DIV id=hidepage><div class=genmed style="border: 1px solid silver; BACKGROUND-COLOR: #d0e1db; width: 50%;"><BR><B>Page Loading... please wait!</B><BR><BR><IMG src="../../clientscript/images/GIF_Loading.gif"><BR><BR>This page still doesn't show? Click <SPAN style="CURSOR: hand" onclick=hideLoadingPage()><U>here</U></SPAN></div></DIV><!-- This script downloaded from www.JavaScriptBank.com Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->