dreamwest Posted June 22, 2009 Share Posted June 22, 2009 How can i have a div with an image inside that says "Loading...." until the image is actually loaded. Is this a body onload thing?? <div class=loading" align="center">Loading Image....<div> <div class="image"> <img border="0" src="http://img.site.com/image.jpg" width="25" height="25"> </div> Quote Link to comment Share on other sites More sharing options...
haku Posted June 23, 2009 Share Posted June 23, 2009 It's javascript, which you *could* use with body onload, but that's the old way of doing things. Basically you just output that message while the page is loading, then replace/remove it with javascript when the page is done loading. Or else you can use javascript to load it in the first place, and remove it when the page is done loading (maybe a better option, in case your users don't have javascript enabled). Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.