Possible Duplicate:
custom choices in javascript confirm dialog.
function confirmdel(msg)
{
var agree=confirm(msg);
if (agree)
return true ;
else
return false ;
}
this is general delete confirmation java script function ,
it ask to user,
Hit
Confirmation dialog box with Ok or Cancel ,
I want to change this ok cancel buttons to Continue and Dont-continue ,
Is it possible ,
Thanks