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

Execute a script when the window's history changes in HTML?


When the window’s history change, the onpopstate event triggers. You can add it like this −

Example

<!DOCTYPE html>
<html>
   <body onpopstate = "onpopstateFunction()">

      <p>This is demo text</p>

   </body>
</html>