Hi
This is not a problem as such - more of a query. I've noticed that several websites seem to have an "entry page" while the website loads. I'm guessging that the webpages are somehow loaded into the browser whilst this page is being displayed with the result being that the viewer then sees the whole page displayed "at once".
I've tried to replicate this by including a very rough javascript routine as follows:
I've included this in the index page of the site which then redirects to the home page in attempt to load all the images, but the page is redirected before the images have finished loading (with the result that the page text and general structure loads followed gradually by the images)
I'm I thinking along the right lines by using this javascrit method or is there some other area which I should be investigating?
Any thoughts or advice very much appreciated
Mike
This is not a problem as such - more of a query. I've noticed that several websites seem to have an "entry page" while the website loads. I'm guessging that the webpages are somehow loaded into the browser whilst this page is being displayed with the result being that the viewer then sees the whole page displayed "at once".
I've tried to replicate this by including a very rough javascript routine as follows:
Code:
<script language="Javascript">
if( document.images )
{
btnHome = new Image();
btnHome.src = "images/btnHome.gif";
}
</script>
<SCRIPT LANGUAGE="Javascript">
window.location="home.asp";
</SCRIPT>
I'm I thinking along the right lines by using this javascrit method or is there some other area which I should be investigating?
Any thoughts or advice very much appreciated
Mike