Basic JavaScript Question:
How do you submit a form using JavaScript?
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).
(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();
document.forms["<form-name>"].submit();
Previous Question | Next Question |
What’s relationship between JavaScript and ECMAScript? | How to read and write a file using JavaScript? |