Basic JavaScript Question:

How do you submit a form using JavaScript?

Tweet Share WhatsApp

Answers:

Answer #1Use document.forms[0].submit()

(0 refers to the index of the form – if we have more than one form in a page, then the first one has the index 0, second has index 1 and so on).


Answer #2Assuming that you have defined the name attribute also for your form, you can write
document.forms["<form-name>"].submit();

Download JavaScript PDF Read All 114 JavaScript Questions
Previous QuestionNext Question
What’s relationship between JavaScript and ECMAScript?How to read and write a file using JavaScript?