How to develop confirmation dialog with yes no button using jquery or any other method ? I need that confirmation when I click on submit button.
Use the native browser confirm dialog.
if(confirm("Are you sure?")) { //Ok button pressed... } else { //Cancel button pressed... }