Hi,
A link such as:
<a href="somefile.htm"> Click here</a>
requires the user to click the text “Click here” to jump to the link. How can I get the page, at the end of a routine, to jump to another page automatically, without requiring the user to click anything? Many thanks for your help.
automatically jump to another page
Moderator: General Moderators
- n00b Saibot
- DevNet Resident
- Posts: 1452
- Joined: Fri Dec 24, 2004 2:59 am
- Location: Lucknow, UP, India
- Contact:
Re: automatically jump to another page
A straightforward solution would be to do something like:
But then again, can I ask why the redirect? I sense AJAX can be put to good use here...
Code: Select all
<script>location.href = 'somefile.htm';</script>