How do you submit a form using Javascript ?

 Posted by Bharathi Cherukuri on 6/18/2012 | Category: JavaScript Interview questions | Views: 3782 | Points: 40
Answer:

By using below snippet, we can submit a form using Javascript.


Use document.forms[0].submit();


Here, in the above snippet, 0 refers to the index of the form – if you have more than one form in a page, then the first one has the index 0, second has index 1 and so on.


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Posted by: Gemamgall on: 6/27/2012 | Points: 10
You need to create a function in JavaScript

Function submitform() {
document.formname.submit();
}


Then call this function from an asp button property ' onclientclick="submitform();"

Login to post response