onchange event on window.location.href

Puchacz

I would like to trigger some Javascript function when window.location.href link changes. Is it possible?

Something like this:

$(window.location.href).on('change', function(){
   doSomething();
});
elzi

You said 'something like', given the example code you're probably looking for the onbeforeunload event handler.

From the Mozilla docs:

window.onbeforeunload = function(e) {
  return 'Dialog text here.';
};

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

onclick window.location.href with input value

From Dev

Passing parameter through "window.location.href"

From Dev

Javascript href change on onChange event

From Dev

String is not a function on window location href

From Dev

Window.location.href infinite loop

From Dev

Why is event.state on window.onpopstate empty when pushing with same location.href (or empty)

From Dev

Javascript window.location.href onClick not working

From Dev

window.location.href not working in IE 11

From Dev

Enable and disable window.location.href

From Dev

Using a variable for if window.location.href.indexOf()

From Dev

$window.location.href NOT WORKING in AngularJS

From Dev

Stubbing window.location.href with Sinon

From Dev

window.location.href not working

From Dev

window.location.href appending instead of replacing

From Dev

JavaScript window.location.href not working in localhost

From Dev

window.location.href is not redirecting html page

From Dev

How to Pass QueryString in window.location.href?

From Dev

window.location.href not working on IE

From Dev

onclick window.location.href with input value

From Dev

window.location.href - help redirecting

From Dev

Javascript href change on onChange event

From Dev

Use of window.location.href in crosswalk

From Dev

window.location.href and hash are not working on chrome

From Dev

Window.location.href infinite loop

From Dev

Javascript window.location.href onClick not working

From Dev

find a tag that contains the window.location.href

From Dev

window.location.href not working as expected

From Dev

Passing parameters using Window.location.href

From Dev

window.location.href does not work for Enter key event in search box

Related Related

HotTag

Archive