Basic JavaScript Question:
Download Questions PDF

How do you submit a form using JavaScript?

Answers:

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

Download JavaScript Interview Questions And Answers PDF

Previous QuestionNext Question
What’s relationship between JavaScript and ECMAScript?How to read and write a file using JavaScript?