Javascript Reference
Categories: InputTypeSubmit

javascript InputTypeSubmit type

@June 30, 2008, 6:45 p.m.
type Firefox/Netscape/NN 3 IE 4 Chrome/Safari/DOM 1  

 

Read-only  

Returns the type of form Submit control element. The value is returned in lowercase letters. You may have to cycle through all form elements in search of specific types to do some processing on (e.g., emptying all form controls of type "text", leaving other controls untouched).

 
Example
 
if (document.forms[0].elements[3].type == "submit") {
  // process submit input type here
}
 
Value

Any of the following constants (as a string): button | checkbox | file | hidden | image | password | radio | reset | select-multiple | select-one | submit | text | textarea.

 
Default

submit


Powered by Linode.