I am using the below javascript to confirm a form submission and have no problems with the code. I was just wondering whether it is possible to make the default option no as it is currently defaulting to yes. An suggestions guys...
function CheckSnapshot()
{
doyou = confirm("This procedure is irreversible and will update the strengths table are you sure you wish to continue?");
if (doyou == false)
return false;
}
function CheckSnapshot()
{
doyou = confirm("This procedure is irreversible and will update the strengths table are you sure you wish to continue?");
if (doyou == false)
return false;
}