| Module: | |
| Inherits from: | |
| Declared In: | |
Overview
Use the links in the table of contents to the left to access the documentation.
Functions
- blur
- contains
- focus
- getAttribute
- getAttributeNode
- getAttributeNodeNS
- getAttributeNS
- getBoundingClientRect
- getClientRects
- getElementsByClassName
- getElementsByTagName
- getElementsByTagNameNS
- hasAttribute
- hasAttributeNS
- querySelector
- querySelectorAll
- removeAttribute
- removeAttributeNode
- removeAttributeNS
- scrollByLines
- scrollByPages
- scrollIntoView
- scrollIntoViewIfNeeded
- setAttribute
- setAttributeNode
- setAttributeNodeNS
- setAttributeNS
boolean contains(
in Element element);
DOMString getAttribute(
in DOMString name);
Attr getAttributeNode(
in DOMString name);
Attr getAttributeNodeNS(
in DOMString namespaceURI,
in DOMString localName);
DOMString getAttributeNS(
in DOMString namespaceURI,
in DOMString localName);
NodeList getElementsByClassName(
in DOMString name);
NodeList getElementsByTagName(
in DOMString name);
NodeList getElementsByTagNameNS(
in DOMString namespaceURI,
in DOMString localName);
boolean hasAttribute(
in DOMString name);
boolean hasAttributeNS(
in DOMString namespaceURI,
in DOMString localName);
Element querySelector(
in DOMString selectors) raises(DOMException);
NodeList querySelectorAll(
in DOMString selectors) raises(DOMException);
void removeAttribute(
in DOMString name) raises(DOMException);
Attr removeAttributeNode(
in Attr oldAttr) raises(DOMException);
void removeAttributeNS(
in DOMString namespaceURI,
in DOMString localName) raises(DOMException);
void scrollByLines(
in long lines);
void scrollByPages(
in long pages);
void scrollIntoView(
in boolean alignWithTop);
void scrollIntoViewIfNeeded(
in boolean centerIfNeeded);
void setAttribute(
in DOMString name,
in DOMString value) raises(DOMException);
Attr setAttributeNode(
in Attr newAttr) raises(DOMException);
Attr setAttributeNodeNS(
in Attr newAttr) raises(DOMException);
void setAttributeNS(
in DOMString namespaceURI,
in DOMString qualifiedName,
in DOMString value) raises(DOMException);
Member Data
- childElementCount
- clientHeight
- clientLeft
- clientTop
- clientWidth
- firstElementChild
- lastElementChild
- nextElementSibling
- offsetHeight
- offsetLeft
- offsetParent
- offsetTop
- offsetWidth
- previousElementSibling
- scrollHeight
- scrollLeft
- scrollTop
- scrollWidth
- style
- tagName
readonly attribute unsigned long childElementCount;
readonly attribute long clientHeight;
readonly attribute long clientLeft;
readonly attribute long clientTop;
readonly attribute long clientWidth;
readonly attribute Element firstElementChild;
readonly attribute Element lastElementChild;
readonly attribute Element nextElementSibling;
readonly attribute long offsetHeight;
readonly attribute long offsetLeft;
readonly attribute Element offsetParent;
readonly attribute long offsetTop;
readonly attribute long offsetWidth;
readonly attribute Element previousElementSibling;
readonly attribute long scrollHeight;
attribute long scrollLeft;
attribute long scrollTop;
readonly attribute long scrollWidth;
readonly attribute DOMString tagName;
Last Updated: 2009-05-29