change windlow location relitave to current one

JavaScript
window.location.href = '/path'; //relative to domain//To get just the relative path of a window location.

const RELATIVE_PATH = window.location.pathname; //Only line of code:
window.location.href = '../'; //one level up
Source

Also in JavaScript: