Sometimes, we want to fix "Submit is not a function" error in JavaScript.
In this article, we’ll look at how to fix "Submit is not a function" error in JavaScript.
How to fix "Submit is not a function" error in JavaScript?
To fix "Submit is not a function" error in JavaScript, we should make sure we have no element with name
or id
attribute set to submit
in our form.
For instance, we write
<form
action="product.php"
method="post"
name="frmProduct"
id="frmProduct"
enctype="multipart/form-data"
>
<input id="submitValue" type="button" name="submitValue" value="" />
</form>
to create a form that doesn’t have any element inside the form with id
or name
attribute set to submit
.
Conclusion
To fix "Submit is not a function" error in JavaScript, we should make sure we have no element with name
or id
attribute set to submit
in our form.