Answers for "change window href without reloading"

5

javascript modify url without reloading page

window.history.pushState('', 'New Page Title', '/new-url.php');
Posted by: Guest on July-22-2019
0

change href without reloading page js

// Current URL: https://my-website.com/page_a
const nextURL = 'https://my-website.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)
Posted by: Guest on November-18-2020

Code answers related to "change window href without reloading"

Code answers related to "Javascript"

Browse Popular Code Answers by Language