RhythmAddict112
Programmer
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
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>