Aryan PrajapatKnowledge Contributor
Explain briefly how you can submit a form using JavaScript?
Explain briefly how you can submit a form using JavaScript?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Questions | Answers | Discussions | Knowledge sharing | Communities & more.
In JavaScript, you can use an on click event for submitting a form, i.e., form.submit() method.
You can perform a submit action by using submit button, By clicking on Hyperlinks.
For submitting a form using JavaScript use document.form[0].submit();
For Example:
document.form[0].submit();