All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface org.w3c.dom.html.HTMLButtonElement

public interface HTMLButtonElement
extends HTMLElement
Push button. See the BUTTON element definition in HTML 4.0.


Method Index

 o getAccessKey()
A single character access key to give access to the form control.
 o getDisabled()
The control is unavailable in this context.
 o getForm()
Returns the FORM element containing this control.
 o getName()
Form control or object name when submitted with a form.
 o getTabIndex()
Index that represents the element's position in the tabbing order.
 o getType()
The type of button.
 o getValue()
The current form control value.
 o setAccessKey(String)
 o setDisabled(boolean)
 o setName(String)
 o setTabIndex(int)
 o setValue(String)

Methods

 o getForm
 public abstract HTMLFormElement getForm()
Returns the FORM element containing this control. Returns null if this control is not within the context of a form.

 o getAccessKey
 public abstract String getAccessKey()
A single character access key to give access to the form control. See the accesskey attribute definition in HTML 4.0.

 o setAccessKey
 public abstract void setAccessKey(String accessKey)
 o getDisabled
 public abstract boolean getDisabled()
The control is unavailable in this context. See the disabled attribute definition in HTML 4.0.

 o setDisabled
 public abstract void setDisabled(boolean disabled)
 o getName
 public abstract String getName()
Form control or object name when submitted with a form. See the name attribute definition in HTML 4.0.

 o setName
 public abstract void setName(String name)
 o getTabIndex
 public abstract int getTabIndex()
Index that represents the element's position in the tabbing order. See the tabindex attribute definition in HTML 4.0.

 o setTabIndex
 public abstract void setTabIndex(int tabIndex)
 o getType
 public abstract String getType()
The type of button. See the type attribute definition in HTML 4.0.

 o getValue
 public abstract String getValue()
The current form control value. See the value attribute definition in HTML 4.0.

 o setValue
 public abstract void setValue(String value)

All Packages  Class Hierarchy  This Package  Previous  Next  Index