I want to have my home page like a splash screen which displays the graphic and then redirects the page to the main content page. Can somebody tell me how I can do this?
function splash(){
window.location.replace(dasite)
}
</script>
To use it change the variable "dasite" to the url of the page you want to load after your aplash screen. Then inside the <body> tag add
"onLoad="setTimeout('splash()',5000)". Your slash screen will load, then 5 seconds after it loads, your other page will load.
Bookmarks