Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Any way to preload div?

Status
Not open for further replies.

RhythmAddict112

Programmer
Jun 17, 2004
625
US
Hi all,
I have a page that has numerous DIVs (with iframes inside of them) that load server-side dynamic pages. As such, there is a slight latency while these pages are loading. I need a way to either preload these pages while displaying a wait message of some sort.....Ive hunted around a bit, but found nothing... A sample follows

Code:
 <div id='tab-container'>

				 	<div class="tab-content">
						<h1 class="tab" title="Printers">Printers</h1>
						<iframe src="prt_tab.asp?id=<%=varJobID%>" name="MyPrintersFrame" width="100%" height="210" align=left frameborder=0>This message is only visible to older browsers.  Replace this with meaningful content!</iframe>
					</div> 

					<div class="tab-content">
							<h1 class="tab" title="Finishing">Finishing</h1>
							<iframe src="fin_tab.asp?id=<%=varJobID%>"  name="MyFinishFrame" width="95%" height="210" align=center frameborder=0>This message is only visible to older browsers.  Replace this with meaningful content!</iframe>
					</div>
</div>

 
sorted..Just in case anyone else needs it..

Code:
<html>
<head>

<script language="javascript" type="text/javascript">
function loadPage() {
document.getElementById("beforeloaded").style.display = "none";
document.getElementById("afterloaded").style.display = "block"; 
}
</script>

</head>

<body onload="loadPage();">
<div id="beforeloaded" style="display:block;">Please wait while the page is loading</div>
<div id="afterloaded" style="display:none;">

<iframe src="whatever.asp">
 
</iframe>

</div>
</body>
</html>

cheers/thanks

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top