| Input This object reflects the functionality of the Html INPUT element, which is used to define form elements such as buttons, checkboxes, one-line textfields, and radio buttons. The functionality of an input object is reflective of an Html INPUT element whose TYPE has been set to 'submit', 'reset', 'checkbox', 'button', 'fileUpload', 'hidden', 'password', 'radio', or 'text'. DOM Reference Internet Explorer window.document.formName.elementName window.document.forms[n].elements[n] window.document.all.elementID Netscape Navigator window.document.formName.elementName window.document.document.forms[n].elements[n]The properties of the Input object are: accessKey className disabled document form id isTextEdit lang language name offsetHeight offsetLeft offsetParent
offsetTop offsetWidth outerHtml outerText parentElement parentTextEdit sourceIndex style tabIndex tagName title type valueThe Methods of the submit Input are: blur() click() contains() focus() getAttribute() handleEvent() insertAdjacentHtml() insertAdjacentText() removeAttribute() scrollIntoView() setAttribute()The Collections and Arrays for the Input object are: all [ ] children [ ] filters [ ]The Event Handlers for the Input object are: onBlur onClick onDblClick onFilterChange onFocus onHelp onKeyDown onKeyPress onKeyUp onMouseDown onMouseMove onMouseOut onMouseOver onMouseUp onSelect |