to read, 1.42K views since 2016.12.16

How to make redirect in javascript (javascript redirect)

When you need to redirect your client to somewhere just use location property available through global window variable like that:

location.href = "new.site.com/new-url"; // this will redirect a site to site.com

or

window.location.href = "/new/url"