The command "alert(numOne);" shows f_name. Thus, I want the the last line of the function to become document.f_name.submit(); but my current idea doesn't work. Is there a way to make this happen?
function submitform(e)
{
var numOne = e.id;
alert(numOne);
if ( confirm("Proceed?")){
document.numOne.submit();
}
}