Computer >> Computer tutorials >  >> Programming >> HTML

Execute a script when a user navigates away from a page in HTML?


When the user navigates from a page, the onpagehide attribute triggers. The navigation occurs when a user clicks a link, closes the browser tab, submits a form, etc.

To execute it, try −

<p onpagehide = "myScript">

You can also use,

object.onpagehide = function(){script};