All Packages Class Hierarchy This Package Previous Next Index
Interface org.w3c.dom.html.HTMLAnchorElement
- public interface HTMLAnchorElement
- extends HTMLElement
The anchor element. See the A element definition in HTML 4.0.
-
blur()
-
Removes keyboard focus from this element.
-
focus()
-
Gives keyboard focus to this element.
-
getAccessKey()
- A single character access key to give access to the form control.
-
getCharset()
- The character encoding of the linked resource.
-
getCoords()
- Comma-separated list of lengths, defining an active region geometry.
-
getHref()
- The URI of the linked resource.
-
getHreflang()
- Language code of the linked resource.
-
getName()
- Anchor name.
-
getRel()
- Forward link type.
-
getRev()
- Reverse link type.
-
getShape()
- The shape of the active area.
-
getTabIndex()
- Index that represents the element's position in the tabbing order.
-
getTarget()
- Frame to render the resource in.
-
getType()
- Advisory content type.
-
setAccessKey(String)
-
-
setCharset(String)
-
-
setCoords(String)
-
-
setHref(String)
-
-
setHreflang(String)
-
-
setName(String)
-
-
setRel(String)
-
-
setRev(String)
-
-
setShape(String)
-
-
setTabIndex(int)
-
-
setTarget(String)
-
-
setType(String)
-
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.
setAccessKey
public abstract void setAccessKey(String accessKey)
getCharset
public abstract String getCharset()
- The character encoding of the linked resource. See the charset attribute definition in HTML 4.0.
setCharset
public abstract void setCharset(String charset)
getCoords
public abstract String getCoords()
- Comma-separated list of lengths, defining an active region geometry.
See also shape for the shape of the region. See the coords attribute definition in HTML 4.0.
setCoords
public abstract void setCoords(String coords)
getHref
public abstract String getHref()
- The URI of the linked resource. See the href attribute definition in HTML 4.0.
setHref
public abstract void setHref(String href)
getHreflang
public abstract String getHreflang()
- Language code of the linked resource. See the hreflang attribute definition in HTML 4.0.
setHreflang
public abstract void setHreflang(String hreflang)
getName
public abstract String getName()
- Anchor name. See the name attribute definition in HTML 4.0.
setName
public abstract void setName(String name)
getRel
public abstract String getRel()
- Forward link type. See the rel attribute definition in HTML 4.0.
setRel
public abstract void setRel(String rel)
getRev
public abstract String getRev()
- Reverse link type. See the rev attribute definition in HTML 4.0.
setRev
public abstract void setRev(String rev)
getShape
public abstract String getShape()
- The shape of the active area. The coordinates are given
by coords. See the shape attribute definition in HTML 4.0.
setShape
public abstract void setShape(String shape)
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.
setTabIndex
public abstract void setTabIndex(int tabIndex)
getTarget
public abstract String getTarget()
- Frame to render the resource in. See the target attribute definition in HTML 4.0.
setTarget
public abstract void setTarget(String target)
getType
public abstract String getType()
- Advisory content type. See the type attribute definition in HTML 4.0.
setType
public abstract void setType(String type)
blur
public abstract void blur()
- Removes keyboard focus from this element.
focus
public abstract void focus()
- Gives keyboard focus to this element.
All Packages Class Hierarchy This Package Previous Next Index