Redirecting to a relative URL in JavaScript

You can do a relative redirect:

window.location.href="https://stackoverflow.com/questions/1655065/"; //one level up

or

window.location.href="https://stackoverflow.com/path"; //relative to domain

Leave a Comment