InterviewSolution
Saved Bookmarks
| 1. |
Please State How To Submit A Form Without Using A Submit Button ? |
|
Answer» We can submit a form WITHOUT using a submit button by having a JAVASCRIPT code LINKED to any event trigger of a form field. And just add the code document.form.submit() function to submit the form when the event is triggered. We can submit a form without using a submit button by having a JavaScript code linked to any event trigger of a form field. And just add the code document.form.submit() function to submit the form when the event is triggered. |
|