Easy Tutorial
❮ Prop Loc Port Met Console Timeend ❯

HTML DOM Input Image Object


Input Image Object

The Input Image object represents an HTML <input> element with the type="image" attribute.

Accessing the Input Image Object

You can use the getElementById() function to access an <input> element with the type="image" attribute:

Tip: You can also access the Input Image object through the form's elements collection.

Creating an Input Image Object

You can use the document.createElement() method to create an <input> element with the type="image" attribute:

Input Image Object Properties

Property Description
alt Sets or returns the value of the alt attribute of the input image
autofocus Sets or returns whether the input image should automatically get focus when the page loads
defaultValue Sets or returns the default value of the input image
disabled Sets or returns whether the input image is disabled
form Returns a reference to the form that contains the input image
formAction Sets or returns the value of the formaction attribute of the input image
formEnctype Sets or returns the value of the formenctype attribute of the input image
formMethod Sets or returns the value of the formmethod attribute of the input image
formNoValidate Sets or returns whether the form-data should be validated on submission
formTarget Sets or returns the value of the formtarget attribute of the input image
height Sets or returns the value of the height attribute of the input image
name Sets or returns the value of the name attribute of the input image
src Sets or returns the value of the src attribute of the input image
type Returns the form element type of the input image
value Sets or returns the value of the value attribute of the input image
width Sets or returns the value of the width attribute of the input image

Standard Properties and Events

The Input Image object also supports standard properties and events.


Related Articles

HTML Tutorial: HTML Forms

HTML Reference: HTML <input> Tag

HTML Reference: HTML <input> type Attribute

❮ Prop Loc Port Met Console Timeend ❯