How to Detect a URL Change With JavaScript

JavaScript has no native event for listening for URL changes in the browser, so to do this, you can create an interval listener that compares the current URL value to the previous value every X seconds.

JavaScript
let prevUrl = undefined; setInterval(() => { const currUrl = window.location.href; if (currUrl != prevUrl) { // URL changed prevUrl = currUrl; console.log(`URL changed to : ${currUrl}`); } }, 60);

We call setInterval() with a callback and 60 to invoke the callback every 60 seconds. In the callback, we check if the current URL is the same as the last URL; if it is, we perform our desired action.

For example:

HTML
<button id="change-url">Change URL</button> <br /><br /> <span id="url-change-indicator"></span>
CSS
#url-change-indicator { white-space: pre; }
JavaScript
const urlChangeIndicator = document.getElementById('url-change-indicator'); let prevUrl = undefined; setInterval(() => { const currUrl = window.location.href; if (currUrl != prevUrl) { // URL changed prevUrl = currUrl; console.log(`URL changed to: ${currUrl}`); urlChangeIndicator.textContent += `New URL: ${currUrl}\r\n`; } }, 60); const changeUrl = document.getElementById('change-url'); changeUrl.addEventListener('click', () => { history.pushState({}, '', 'new-page.html'); });

A URL change is detected right away when the page is first loaded:

A URL change is detected right away when the page is first loaded.

A URL change will also be detected when history.pushState() is called from the Change URL button’s click event listener.

A URL change is detected when `pushState()` is called on button click.

Detect back button click

Apart from pushState(), this approach will also work when the back button is clicked, whether by the user or with a method like history.back().

A URL change is detected on back button click.
A URL change is detected on back button click.

Detect forward button click

The same thing applies to a forward button click or history.forward():

A URL change is detected on forward button click.
A URL change is detected on forward button click.

Use detect-url-change library

Alternatively, you can use the detect-url-change library to quickly change the browser URL.

JavaScript
import detectChangeUrl from 'detect-url-change'; detectChangeUrl.on('change', (newUrl) => { console.log(`URL changed to ${newUrl}`); });

The default export is an observer on which you can attach listeners to perform an action when the URL changes.

For example:

HTML
<button id="change-url">Change URL</button> <br /><br /> <span id="url-change-indicator"></span>
CSS
#url-change-indicator { white-space: pre; } * { font-family: 'Segoe UI'; }
JavaScript
import detectChangeUrl from 'detect-url-change'; const urlChangeIndicator = document.querySelector('#url-change-indicator'); detectChangeUrl.on('change', (newUrl) => { console.log(`URL changed to ${newUrl}`); urlChangeIndicator.textContent += `New URL: ${newUrl}\r\n`; }); const changeUrl = document.getElementById('change-url'); changeUrl.addEventListener('click', () => { history.pushState({}, '', 'new-page.html'); });
A URL change is detected from a pushState() call in the button's click event listener.
A URL change is detected from a pushState() call in the button’s click event listener.

To use detect-url-change like in this example, you’ll first need to install it into your project. You can do this with the following command:

Shell
npm i detect-url-change # Yarn yarn add detect-url-change

You’ll also need to use a bundling tool like Webpack, Rollup, Parcel, etc.



11 Amazing New JavaScript Features in ES13

This guide will bring you up to speed with all the latest features added in ECMAScript 13. These powerful new features will modernize your JavaScript with shorter and more expressive code.

11 Amazing New JavaScript Features in ES13

Sign up and receive a free copy immediately.

Leave a Comment

Your email address will not be published. Required fields are marked *