Search
Preparing search index...
The search index is not available
DefinitelyTyped
Inherited
Private
Externals
Only exported
Ti
XML
Element
Interface Element
Hierarchy
Node
Element
Index
Properties
ATTRIBUTE_NODE
CDATA_SECTION_NODE
COMMENT_NODE
DOCUMENT_FRAGMENT_NODE
DOCUMENT_NODE
DOCUMENT_TYPE_NODE
ELEMENT_NODE
ENTITY_NODE
ENTITY_REFERENCE_NODE
NOTATION_NODE
PROCESSING_INSTRUCTION_NODE
TEXT_NODE
attributes
bubbleParent
childNodes
firstChild
lastChild
localName
namespaceURI
nextSibling
nodeName
nodeType
nodeValue
ownerDocument
parentNode
prefix
previousSibling
tagName
text
textContent
Methods
addEventListener
appendChild
applyProperties
cloneNode
fireEvent
getAttribute
getAttributeNS
getAttributeNode
getAttributeNodeNS
getAttributes
getBubbleParent
getChildNodes
getElementsByTagName
getElementsByTagNameNS
getFirstChild
getLastChild
getLocalName
getNamespaceURI
getNextSibling
getNodeName
getNodeType
getNodeValue
getOwnerDocument
getParentNode
getPrefix
getPreviousSibling
getTagName
getText
getTextContent
hasAttribute
hasAttributeNS
hasAttributes
hasChildNodes
insertBefore
isSupported
normalize
removeAttribute
removeAttributeNS
removeAttributeNode
removeChild
removeEventListener
replaceChild
setAttribute
setAttributeNS
setAttributeNode
setAttributeNodeNS
setBubbleParent
setLocalName
setNodeValue
setPrefix
Properties
public
ATTRIBUTE_NODE
:
number
public
CDATA_SECTION_NODE
:
number
public
COMMENT_NODE
:
number
public
DOCUMENT_FRAGMENT_NODE
:
number
public
DOCUMENT_NODE
:
number
public
DOCUMENT_TYPE_NODE
:
number
public
ELEMENT_NODE
:
number
public
ENTITY_NODE
:
number
public
ENTITY_REFERENCE_NODE
:
number
public
NOTATION_NODE
:
number
public
PROCESSING_INSTRUCTION_NODE
:
number
public
TEXT_NODE
:
number
public
attributes
:
NamedNodeMap
public
bubbleParent
:
boolean
public
childNodes
:
NodeList
public
firstChild
:
Node
public
lastChild
:
Node
public
localName
:
string
public
namespaceURI
:
string
public
nextSibling
:
Node
public
nodeName
:
string
public
nodeType
:
number
public
nodeValue
:
string
public
ownerDocument
:
Document
public
parentNode
:
Node
public
prefix
:
string
public
previousSibling
:
Node
public
tagName
:
string
public
text
:
string
public
textContent
:
string
Methods
public
addEventListener
(
name
:
string
, callback
:
(...args: any[]) => any
)
Parameters
name:
string
callback:
(...args: any[]) => any
public
appendChild
(
newChild
:
Node
)
:
Node
Parameters
newChild:
Node
Returns
Node
public
applyProperties
(
props
:
Dictionary
)
Parameters
props:
Dictionary
public
cloneNode
(
deep
:
boolean
)
:
Node
Parameters
deep:
boolean
Returns
Node
public
fireEvent
(
name
:
string
, event
:
Dictionary
)
Parameters
name:
string
event:
Dictionary
public
getAttribute
(
name
:
string
)
:
string
Parameters
name:
string
Returns
string
public
getAttributeNS
(
namespaceURI
:
string
, localName
:
string
)
:
string
Parameters
namespaceURI:
string
localName:
string
Returns
string
public
getAttributeNode
(
name
:
string
)
:
Attr
Parameters
name:
string
Returns
Attr
public
getAttributeNodeNS
(
namespaceURI
:
string
, localName
:
string
)
:
Attr
Parameters
namespaceURI:
string
localName:
string
Returns
Attr
public
getAttributes
(
)
:
NamedNodeMap
Returns
NamedNodeMap
public
getBubbleParent
(
)
:
boolean
Returns
boolean
public
getChildNodes
(
)
:
NodeList
Returns
NodeList
public
getElementsByTagName
(
name
:
string
)
:
NodeList
Parameters
name:
string
Returns
NodeList
public
getElementsByTagNameNS
(
namespaceURI
:
string
, localName
:
string
)
:
NodeList
Parameters
namespaceURI:
string
localName:
string
Returns
NodeList
public
getFirstChild
(
)
:
Node
Returns
Node
public
getLastChild
(
)
:
Node
Returns
Node
public
getLocalName
(
)
:
string
Returns
string
public
getNamespaceURI
(
)
:
string
Returns
string
public
getNextSibling
(
)
:
Node
Returns
Node
public
getNodeName
(
)
:
string
Returns
string
public
getNodeType
(
)
:
number
Returns
number
public
getNodeValue
(
)
:
string
Returns
string
public
getOwnerDocument
(
)
:
Document
Returns
Document
public
getParentNode
(
)
:
Node
Returns
Node
public
getPrefix
(
)
:
string
Returns
string
public
getPreviousSibling
(
)
:
Node
Returns
Node
public
getTagName
(
)
:
string
Returns
string
public
getText
(
)
:
string
Returns
string
public
getTextContent
(
)
:
string
Returns
string
public
hasAttribute
(
name
:
string
)
:
boolean
Parameters
name:
string
Returns
boolean
public
hasAttributeNS
(
namespaceURI
:
string
, localName
:
string
)
:
boolean
Parameters
namespaceURI:
string
localName:
string
Returns
boolean
public
hasAttributes
(
)
:
boolean
Returns
boolean
public
hasChildNodes
(
)
:
boolean
Returns
boolean
public
insertBefore
(
newChild
:
Node
, refChild
:
Node
)
:
Node
Parameters
newChild:
Node
refChild:
Node
Returns
Node
public
isSupported
(
feature
:
string
, version
:
string
)
:
boolean
Parameters
feature:
string
version:
string
Returns
boolean
public
normalize
(
)
public
removeAttribute
(
name
:
string
)
Parameters
name:
string
public
removeAttributeNS
(
namespaceURI
:
string
, localName
:
string
)
Parameters
namespaceURI:
string
localName:
string
public
removeAttributeNode
(
oldAttr
:
Attr
)
Parameters
oldAttr:
Attr
public
removeChild
(
oldChild
:
Node
)
:
Node
Parameters
oldChild:
Node
Returns
Node
public
removeEventListener
(
name
:
string
, callback
:
(...args: any[]) => any
)
Parameters
name:
string
callback:
(...args: any[]) => any
public
replaceChild
(
newChild
:
Node
, oldChild
:
Node
)
:
Node
Parameters
newChild:
Node
oldChild:
Node
Returns
Node
public
setAttribute
(
name
:
string
, value
:
string
)
Parameters
name:
string
value:
string
public
setAttributeNS
(
namespaceURI
:
string
, qualifiedName
:
string
, value
:
string
)
Parameters
namespaceURI:
string
qualifiedName:
string
value:
string
public
setAttributeNode
(
newAttr
:
Attr
)
:
Attr
Parameters
newAttr:
Attr
Returns
Attr
public
setAttributeNodeNS
(
newAttr
:
Attr
)
:
Attr
Parameters
newAttr:
Attr
Returns
Attr
public
setBubbleParent
(
bubbleParent
:
boolean
)
Parameters
bubbleParent:
boolean
public
setLocalName
(
localName
:
string
)
Parameters
localName:
string
public
setNodeValue
(
nodeValue
:
string
)
Parameters
nodeValue:
string
public
setPrefix
(
prefix
:
string
)
Parameters
prefix:
string
Globals
Global
Ti
Ti.Android
Ti.Android.Calendar
Ti.App
Ti.App.iOS
Ti.Calendar
Ti.Cloud
Ti.Contacts
Ti.Contacts.Tizen
Ti.Database
Ti.Facebook
Ti.Filesystem
Ti.Geolocation
Ti.Geolocation.Android
Ti.Map
Ti.Media
Ti.Network
Ti.Network.Socket
Ti.Platform
Ti.UI
Ti.UI.Android
Ti.UI.MobileWeb
Ti.UI.iOS
Ti.UI.iPad
Ti.UI.iPhone
Ti.XML
bubbleParent
CDATASection
Comment
DocumentFragment
EntityReference
Attr
CharacterData
DOMImplementation
Document
DocumentType
Element
ATTRIBUTE_NODE
CDATA_SECTION_NODE
COMMENT_NODE
DOCUMENT_FRAGMENT_NODE
DOCUMENT_NODE
DOCUMENT_TYPE_NODE
ELEMENT_NODE
ENTITY_NODE
ENTITY_REFERENCE_NODE
NOTATION_NODE
PROCESSING_INSTRUCTION_NODE
TEXT_NODE
attributes
bubbleParent
childNodes
firstChild
lastChild
localName
namespaceURI
nextSibling
nodeName
nodeType
nodeValue
ownerDocument
parentNode
prefix
previousSibling
tagName
text
textContent
addEventListener
appendChild
applyProperties
cloneNode
fireEvent
getAttribute
getAttributeNS
getAttributeNode
getAttributeNodeNS
getAttributes
getBubbleParent
getChildNodes
getElementsByTagName
getElementsByTagNameNS
getFirstChild
getLastChild
getLocalName
getNamespaceURI
getNextSibling
getNodeName
getNodeType
getNodeValue
getOwnerDocument
getParentNode
getPrefix
getPreviousSibling
getTagName
getText
getTextContent
hasAttribute
hasAttributeNS
hasAttributes
hasChildNodes
insertBefore
isSupported
normalize
removeAttribute
removeAttributeNS
removeAttributeNode
removeChild
removeEventListener
replaceChild
setAttribute
setAttributeNS
setAttributeNode
setAttributeNodeNS
setBubbleParent
setLocalName
setNodeValue
setPrefix
Entity
NamedNodeMap
Node
NodeList
Notation
ProcessingInstruction
Text
addEventListener
applyProperties
fireEvent
getBubbleParent
parseString
removeEventListener
serializeToString
setBubbleParent