javascript redirect to another path code example
Example 1: js redirect to relative url
window.location.href = '/path'; //relative to domain
Example 2: javascript redirect
window.location.href = "http://mywebsite.com/home.html";
Example 3: change windlow location relitave to current one
//Only line of code:
window.location.href = '../'; //one level up