InterviewSolution
Saved Bookmarks
| 1. |
How Can We Submit From Without A Submit Button? |
|
Answer» Trigger the JavaScript code on any EVENT ( like onSelect of drop down list BOX, onfocus, etc ) DOCUMENT. myform.SUBMIT(); This will submit the form. Trigger the JavaScript code on any event ( like onSelect of drop down list box, onfocus, etc ) document. myform.submit(); This will submit the form. |
|