Is it possible to program in javascript or plain html to use the following procedure...
onmouseclick: action load a new gif, wait a few seconds and load the next html-page in the same frame.
<script language=javascript>
function startTheProcess(){
//load the gif here
setTimeout('changeLocation();',3000);
}
function changeLocation(){
window.location='newPage.htm';
}
</script>
Sorry, I don't know the code to load up the gif image, but I'm sure someone else here can add to what I've posted. The setTimout will wait 3000 milliseconds and then fire the changeLocation() function, which will wisk you away to the 'newPage.htm' location...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.