Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Thiti V. Sintopchai http://thitiv.blogspot.com

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

JavaScript: Programmatically Click the Form Submit Button

// Programmatically Click the Form Submit Button
// by using the 'click()' method

   1  
   2    submitTags : function()
   3    {
   4      var btnSubmitTags = document.getElementById( TagsHelperConfig.FORM_TAGS_ENTRY_SUBMIT_BUTTON_ID );
   5  
   6      // Programmatically click the submit button
   7      btnSubmitTags.click();
   8    }
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS