Submit Confirmation
Posted: Thu Nov 24, 2005 1:38 pm
I have the following code for a submit confirmation dialog box
the submitSave() function is where all the meat is...but it doesn't seem to enter into that function at all?
any idea why???
Code: Select all
function verifySave()
{
msg = confirm("Are you sure you want to save this data?")
if (msg != 0)
{
submitSave();
}
}any idea why???