Last updated on January 9th, 2023 at 09:33 am

Just a simple javascript confirmation dialogue box. This is very essential when it comes to a webpage where there is a edit or delete option.
If the user is not ready to move forward then they can stay in the same page. Here is the script.

<a href="JavaScript:if(confirm('Are you ready to go to the next page?')==true){window.location='nextpage.html';}">Move To Next Page</a>

The above script is basically a hyperlink, when clicked will confirm with the user whether they are ready to go to the next page or they need to stay back in the same page itself.
If user press YES in the confirmation box then they will move to the next page. Otherwise they will stay in the same page.

Demo

Leave a Reply

Your email address will not be published. Required fields are marked *