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.
+1
A:
Use the native browser confirm dialog.
if(confirm("Are you sure?"))
{
//Ok button pressed...
}
else
{
//Cancel button pressed...
}
mck89
2010-07-02 13:42:28