This question already has an answer here:
- How do I redirect to another webpage? 58 answers
How do you redirect to a page from another page with JavaScript?
This question already has an answer here:
How do you redirect to a page from another page with JavaScript?
Compared to
window.location="url";
it is much easyer to do justlocation="url";
I always use thatTo redirect to another page, you can use:
location.href
.location.replace
.For example:
Information copied from this answer to a duplicate question
You can't redirect to a function. What you can do is pass some flag on the URL when redirecting, then check that flag in the server side code and if raised, execute the function.
For example:
Then in your PHP code check for "action" in the query string and if equal to "DoThis" execute whatever function you need.
You may need to explain your question a little more.
When you say "redirect", to most people that suggests changing the location of the HTML page:
When you say "redirect to function" - it doesn't really make sense. You can call a function or you can redirect to another page. You can even redirect and have a function called when the new page loads.
It's better than using
window.location.href = 'http://sidanmor.com';
Using
replace()
is better because it does not keep the originating page in the session history, meaning the user won't get stuck in a never-ending back-button fiasco.For example:
Taken from here: How to redirect to another page in jQuery?