E4XXMLList |
E4XXMLFunctions.attribute(JSString attributeName) |
function attribute(attributeName) finds list of XML attributes associated with the attribute name.
|
E4XXMLList |
E4XXMLListFunctions.attribute(JSString attributeName) |
function attribute(attributeName) calls the attribute method of each XML object in this XMLList object passing attributeName as a parameter and returns an XMLList containing the results in order.
|
E4XXMLList |
E4XXMLFunctions.attributes() |
function attributes() list of XML attributes associated with an XML object.
|
E4XXMLList |
E4XXMLListFunctions.attributes() |
function attributes() calls the attributes() method of each XML object in this XMLList object and returns an XMLList containing the results in order.
|
E4XXMLList |
E4XXMLFunctions.child(JSNumber propertyName) |
function child(propertyName) finds list of XML object matching a given propertyName.
|
E4XXMLList |
E4XXMLFunctions.child(JSString propertyName) |
function child(propertyName) finds list of XML object matching a given propertyName.
|
E4XXMLList |
E4XXMLListFunctions.child(JSString propertyName) |
function child(propertyName) calls the child() method of each XML object in this XMLList object and returns an XMLList containing the results in order.
|
E4XXMLList |
E4XXMLFunctions.children() |
function children() returns list of children for the XML element.
|
E4XXMLList |
E4XXMLListFunctions.children() |
function children() calls the children() method of each XML object in this XMLList object and returns an XMLList containing the results concatenated in order.
|
E4XXMLList |
E4XXMLFunctions.comments() |
function comments() returns list of comments for the XML element.
|
E4XXMLList |
E4XXMLListFunctions.comments() |
function comments() calls the comments method of each XML object in this XMLList object and returns an XMLList containing the results concatenated in order.
|
E4XXMLList |
E4XXMLFunctions.descendants(JSString name) |
function descendants(name) returns all the XML valued descendants (children, grandchildren, great-grandchildren, etc.)
|
E4XXMLList |
E4XXMLListFunctions.descendants(JSString name) |
function descendants(name) calls the descendants method of each XML object in this XMLList object with the optional parameter name (or the string "*" if name is omitted) and returns an XMLList containing the results concatenated in order.
|
E4XXMLList |
E4XXMLFunctions.elements(JSString name) |
function elements(name) returns the child elements.
|
E4XXMLList |
E4XXMLListFunctions.elements(JSString name) |
function elements(name) calls the elements method of each XML object in this XMLList object passing the optional parameter name (or "*" if it is omitted) and returns an XMList containing the results in order.
|
E4XXMLList |
E4XXMLListFunctions.normalize() |
function normalize() puts all text nodes in this XMLList, all the XML objects it contains and the descendents of all the XML objects it contains into a normal form by merging adjacent text nodes and eliminating empty text nodes.
|
E4XXMLList |
E4XXMLFunctions.processingInstructions(JSString name) |
function processingInstructions(name) A list of all processing instructions that are children of this element.
|
E4XXMLList |
E4XXMLListFunctions.processingInstructions(JSString name) |
function processingInstructions(name) calls the processingInstructions method of each XML object in this XMLList object passing the optional parameter name (or "*" if it is omitted) and returns an XMList containing the results in order.
|
E4XXMLList |
E4XXMLFunctions.text() |
function text() returns an XMLList containing all XML properties of this XML object that represent XML text nodes.
|
E4XXMLList |
E4XXMLListFunctions.text() |
function text() calls the text method of each XML object contained in this XMLList object and returns an XMLList containing the results concatenated in order.
|