Difference between revisions of "lure.dom.element"

(Created page with "Documentation does not yet exist")
 
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
Documentation does not yet exist
+
== Element Object ==
 +
 
 +
Desc
 +
 
 +
== Element Properties ==
 +
 
 +
Properties present in this table are properties currently planned for implementation. Not all W3C DOM Properties will be implemented.
 +
 
 +
{|
 +
! align="left" | Property
 +
! align="left" style="padding-left:10px;" | Description
 +
! align="left" style="padding-left:10px;" | Implemented
 +
|-
 +
| tagName
 +
|style="padding-left:10px;"|Retruns the node's tagName
 +
|style="padding-left:10px;"|Yes
 +
|}
 +
 
 +
== Element Methods ==
 +
 
 +
Methods present in this table are methods currently planned for implementation. Not all W3C DOM methods will be implemented.
 +
 
 +
This Object does not declare additional Methods
 +
 
 +
== Element Inherited Properties ==
 +
 
 +
This Object inherits the following properties from [[lure.dom.node|DOM Node]]
 +
 
 +
{|
 +
! align="left" | Property
 +
|-
 +
| id
 +
|-
 +
| childNodes
 +
|-
 +
| firstChild
 +
|-
 +
| previousSibling
 +
|-
 +
| nextSibling
 +
|-
 +
| lastChild
 +
|-
 +
| nodeName
 +
|-
 +
| nodeType
 +
|-
 +
| nodeValue
 +
|-
 +
| parentNode
 +
|-
 +
| textContent
 +
|-
 +
| text
 +
|-
 +
| xml
 +
|}
 +
 
 +
== Element Inherited Methods ==
 +
 
 +
This Object inherits the following methods from [[lure.dom.node|DOM Node]]
 +
 
 +
{|
 +
! align="left" | Method
 +
|-
 +
| appendChild()
 +
|-
 +
| cloneNode()
 +
|-
 +
| hasAttributes()
 +
|-
 +
| hasChildNodes()
 +
|-
 +
| insertBefore()
 +
|-
 +
| isEqualNode()
 +
|-
 +
| isSameNode()
 +
|-
 +
| normalize()
 +
|-
 +
| removeChild()
 +
|-
 +
| replaceChild()
 +
|-
 +
| getElementsByTagName()
 +
|-
 +
| getElementsByClassName()
 +
|-
 +
| getElementById()
 +
|}

Latest revision as of 10:21, 5 November 2011

Element Object

Desc

Element Properties

Properties present in this table are properties currently planned for implementation. Not all W3C DOM Properties will be implemented.

Property Description Implemented
tagName Retruns the node's tagName Yes

Element Methods

Methods present in this table are methods currently planned for implementation. Not all W3C DOM methods will be implemented.

This Object does not declare additional Methods

Element Inherited Properties

This Object inherits the following properties from DOM Node

Property
id
childNodes
firstChild
previousSibling
nextSibling
lastChild
nodeName
nodeType
nodeValue
parentNode
textContent
text
xml

Element Inherited Methods

This Object inherits the following methods from DOM Node

Method
appendChild()
cloneNode()
hasAttributes()
hasChildNodes()
insertBefore()
isEqualNode()
isSameNode()
normalize()
removeChild()
replaceChild()
getElementsByTagName()
getElementsByClassName()
getElementById()