Jump to content

Straight forward java script not working


sseeley

Recommended Posts

Hello, can anyone help me with this Javascript? When I click cancel it still submits the form?

 

function confirmSubmit()

{

var r=confirm("Please confirm you have updated the divisors correctly");

if (r==true)

{

submitOK = "true";

}

else

{

submitOK = "false";

}

if (submitOK == "false")

{

return false;

}

}

The following works:

 

<!doctype html>
<html lang="en-us" dir="ltr">
  <head>
    <meta charset="utf-8" />
    <title>Form submission test</title>
  </head>
  
  <body>
    <form name="myForm" action="" method="post">
      <input name="submit" type="submit" value="Submit" />
    </form>
  </body>
  
  <script type="text/javascript">
    var oForm = document.forms["myForm"];
    
    oForm.onsubmit = function() {
      return confirm("Do you wish to continue?");
    }
  </script>
  
</html>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.