change url without refresh page using javascript

change url without refresh page using javascript

javascript modify url without reload

// Current URL: https://domain.com/page_a

const nextURL = 'https://domain.com/page_b';
const nextTitle = 'My new page title';
const nextState = { additionalInformation: 'Updated the URL with JS' };

// This will create a new entry in the browser's history, without reloading
window.history.pushState(nextState, nextTitle, nextURL);

// This will replace the current entry in the browser's history, without reloading
window.history.replaceState(nextState, nextTitle, nextURL);
Source:‮www‬.lautturi.com
Created Time:2017-09-02 14:18:34  Author:lautturi