Sorry if its question is reasked. I'm creating a form and asking user to confirm but its not working its always proceding whether user clicks ok, cancel or even close the confirm window. Here is the code:
FORM:
<form action="simple_things.php" class="right inline" method="POST" onsubmit="confirm_input();">
<input type="submit" class="btn red small" name="reset" value="Reset Points">
<input type="submit" class="btn red small" name="reset" value="Reset Referals">
</form>
Script
<script type="text/javascript">
function confirm_input() {
var r = confirm("Do you really wanted to reset?");
return r;
} </script>