How to make redirect in javascript (javascript redirect)
lang_of_article_differ
want_proper_trans
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"