Use Case : I have a webpage which shows popovers for some of the functionalities. The popovers can be considered to be a HTML div which is shown when the corresponding button is clicked. And again go hidden when the cancel button is clicked / browser back button is clicked.
Problem : Consider that the popover is shown. When the user clicks the back button, he should not get navigated back to the previous page instead only the popover div should get hidden.
How do I add this functionality using javascript to the browser back button?
Thanks in advance
You can us hash which you append to the URL to fetch history changes.
index.html
-> user opens popover ->index.html#popover
Now a click to the back button will redirect back to
index.html
. Of course this requires some amount of JavaScript code.