Log in

View Full Version : redirection code



thesimplecreator
06-08-2007, 04:20 AM
have seen the windows vista and xp for psp?
well, they are made in javascript,html, and i think some css
i am trying to make one
i dont know pretty much anything but html with a bit of javascript understanding
so i need to know the code for when someone comes to a certain page they are rediricted in a set amount of seconds.
i need this code for the "boot" screen

codeexploiter
06-08-2007, 07:14 AM
<script type="text/javascript">
function Redirect() {
location.href = 'test.htm'; //specify the page name to which you want to redirect. Give the correct path if you have any
}

setTimeout('Redirect()',4000);
</script>


Use the above code which will redirect to a new page with a bit time delay

thesimplecreator
06-08-2007, 07:14 PM
thx alot man:)