Having some problems getting Javascript to use the Action I specified for my form in my HTML when using the following function.
Code: Select all
function confirm_submit(form, msg)
{
response = confirm(msg);
if (response == false) {
return false;
} else {
form.submit();
return true;
}
}
Any ideas?