Posts

Showing posts from April, 2024

how to detect browser back and forward button clicks using Java Script

This code demonstrates how to detect browser back and forward button clicks using the History API and custom events. When the user interacts with the back or forward button, the corresponding custom event is fired, allowing you to handle specific actions in your application <!DOCTYPE html> <html lang="en"> <head>   <meta charset="UTF-8">     <meta http-equiv="X-UA-Compatible" content="IE=edge">     <meta name="viewport" content="width=device-width, initial-scale=1.0">     <title>Browser Back & Forward Identification</title> </head> <body>     <button id="btn"> <a href="#title">Click the link to change the URL</a></button>     <h2 id="title">How to detect browser back and forward button clicks</h2>     <p class="result"></p>     <script> if(window.history && histor