ProcessingInstruction

@native @JSGlobal @JSType
abstract class ProcessingInstruction extends Node

A processing instruction provides an opportunity for application-specific instructions to be embedded within XML and which can be ignored by XML processors which do not support processing their instructions (outside of their having a place in the DOM).

class Node
class Object
trait Any
class Object
trait Matchable
class Any

Value members

Concrete methods

def data: String
def target: String

Inherited methods

def addEventListener[T <: Event](`type`: String, listener: Function1[T, _], options: EventListenerOptions): Unit

The EventTarget.addEventListener() method registers the specified listener on the EventTarget it's called on. The event target may be an Element in a document, the Document itself, a Window, or any other object that supports events (such as XMLHttpRequest).

The EventTarget.addEventListener() method registers the specified listener on the EventTarget it's called on. The event target may be an Element in a document, the Document itself, a Window, or any other object that supports events (such as XMLHttpRequest).

This implementation accepts a settings object of type EventListenerOptions.

Inherited from:
EventTarget
def addEventListener[T <: Event](`type`: String, listener: Function1[T, _], useCapture: Boolean): Unit

The EventTarget.addEventListener() method registers the specified listener on the EventTarget it's called on. The event target may be an Element in a document, the Document itself, a Window, or any other object that supports events (such as XMLHttpRequest).

The EventTarget.addEventListener() method registers the specified listener on the EventTarget it's called on. The event target may be an Element in a document, the Document itself, a Window, or any other object that supports events (such as XMLHttpRequest).

Inherited from:
EventTarget
def appendChild(newChild: Node): Node

Adds a node to the end of the list of children of a specified parent node. If the node already exists it is removed from current parent node, then added to new parent node.

Adds a node to the end of the list of children of a specified parent node. If the node already exists it is removed from current parent node, then added to new parent node.

Inherited from:
Node

.attributes is a collection of all attribute nodes registered to the specified node. It is a NamedNodeMap,not an Array, so it has no Array methods and the Attr nodes' indexes may differ among browsers. To be more specific, attribute is a key value pair of strings that represents any information regarding that node; it cannot hold Object. Attribute can hold additional data/information that is required while processing custom JavaScript. There are many predefined attributes for different nodes used for binding events, validations, and specifying layout informations that are handled by browser (may vary from browser to browser).

.attributes is a collection of all attribute nodes registered to the specified node. It is a NamedNodeMap,not an Array, so it has no Array methods and the Attr nodes' indexes may differ among browsers. To be more specific, attribute is a key value pair of strings that represents any information regarding that node; it cannot hold Object. Attribute can hold additional data/information that is required while processing custom JavaScript. There are many predefined attributes for different nodes used for binding events, validations, and specifying layout informations that are handled by browser (may vary from browser to browser).

Inherited from:
Node
def baseURI: String

Returns the absolute base URL of this Node.

Returns the absolute base URL of this Node.

Inherited from:
Node

Returns a live NodeList containing all the children of this node. NodeList being live means that if the children of the Node change, the NodeList object is automatically updated.

Returns a live NodeList containing all the children of this node. NodeList being live means that if the children of the Node change, the NodeList object is automatically updated.

Inherited from:
Node
def cloneNode(deep: Boolean): Node

Clone a Node, and optionally, all of its contents. By default, it clones the content of the node.

Clone a Node, and optionally, all of its contents. By default, it clones the content of the node.

Inherited from:
Node
def compareDocumentPosition(other: Node): Int

Compares the position of the current node against another node in any other document.

Compares the position of the current node against another node in any other document.

Inherited from:
Node
def contains(otherNode: Node): Boolean

Returns a Boolean value indicating whether a node is a descendant of a given node, i.e. the node itself, one of its direct children (childNodes), one of the children's direct children, and so on.

Returns a Boolean value indicating whether a node is a descendant of a given node, i.e. the node itself, one of its direct children (childNodes), one of the children's direct children, and so on.

Inherited from:
Node
def dispatchEvent(evt: Event): Boolean

Dispatches an Event at the specified EventTarget, invoking the affected EventListeners in the appropriate order. The normal event processing rules (including the capturing and optional bubbling phase) apply to events dispatched manually with dispatchEvent().

Dispatches an Event at the specified EventTarget, invoking the affected EventListeners in the appropriate order. The normal event processing rules (including the capturing and optional bubbling phase) apply to events dispatched manually with dispatchEvent().

Inherited from:
EventTarget

Returns the node's first child in the tree, or null if the node is childless. If the node is a Document, it returns the first node in the list of its direct children.

Returns the node's first child in the tree, or null if the node is childless. If the node is a Document, it returns the first node in the list of its direct children.

Inherited from:
Node
def hasAttributes(): Boolean

hasAttributes returns a boolean value of true or false, indicating if the current element has any attributes or not.

hasAttributes returns a boolean value of true or false, indicating if the current element has any attributes or not.

Inherited from:
Node
def hasChildNodes(): Boolean

hasChildNodes returns a Boolean value indicating whether the current Node has child nodes or not.

hasChildNodes returns a Boolean value indicating whether the current Node has child nodes or not.

Inherited from:
Node
def hasOwnProperty(v: String): Boolean
Inherited from:
Object
def insertBefore(newChild: Node, refChild: Node): Node

Inserts the first Node given in a parameter immediately before the second, child of this element, Node.

Inserts the first Node given in a parameter immediately before the second, child of this element, Node.

Inherited from:
Node
def isConnected: Boolean

True if this Node is connected to the Document context object (or ShadowRoot in the case of shadow DOM)

True if this Node is connected to the Document context object (or ShadowRoot in the case of shadow DOM)

Inherited from:
Node
def isDefaultNamespace(namespaceURI: String): Boolean

isDefaultNamespace accepts a namespace URI as an argument and returns true if the namespace is the default namespace on the given node or false if not.

isDefaultNamespace accepts a namespace URI as an argument and returns true if the namespace is the default namespace on the given node or false if not.

Inherited from:
Node
def isEqualNode(arg: Node): Boolean

If #targetElm is first div element in document, "true" will be displayed.

If #targetElm is first div element in document, "true" will be displayed.

Inherited from:
Node
def isPrototypeOf(v: Object): Boolean
Inherited from:
Object
def isSameNode(other: Node): Boolean

Tests whether two nodes are the same, that is they reference the same object.

Tests whether two nodes are the same, that is they reference the same object.

Inherited from:
Node
def isSupported(feature: String, version: String): Boolean

The Node.isSupported()returns a Boolean flag containing the result of a test whether the DOM implementation implements a specific feature and this feature is supported by the specific node.

The Node.isSupported()returns a Boolean flag containing the result of a test whether the DOM implementation implements a specific feature and this feature is supported by the specific node.

Inherited from:
Node

Returns a Node representing the last direct child node of the node, or null if the node has no child.

Returns a Node representing the last direct child node of the node, or null if the node has no child.

Inherited from:
Node
def localName: String

Returns a DOMString representing the local part of the qualified name of an element. In Firefox 3.5 and earlier, the property upper-cases the local name for HTML elements (but not XHTML elements). In later versions, this does not happen, so the property is in lower case for both HTML and XHTML. Though the specification requires localName to be defined on the Node interface, Gecko-based browsers implement it on the Element interface.

Returns a DOMString representing the local part of the qualified name of an element. In Firefox 3.5 and earlier, the property upper-cases the local name for HTML elements (but not XHTML elements). In later versions, this does not happen, so the property is in lower case for both HTML and XHTML. Though the specification requires localName to be defined on the Node interface, Gecko-based browsers implement it on the Element interface.

Inherited from:
Node
def lookupNamespaceURI(prefix: String): String

Takes a prefix and returns the namespaceURI associated with it on the given node if found (and null if not). Supplying null for the prefix will return the default namespace.

Takes a prefix and returns the namespaceURI associated with it on the given node if found (and null if not). Supplying null for the prefix will return the default namespace.

Inherited from:
Node
def lookupPrefix(namespaceURI: String): String

Returns the prefix for a given namespaceURI if present, and null if not. When multiple prefixes are possible, the result is implementation-dependent.

Returns the prefix for a given namespaceURI if present, and null if not. When multiple prefixes are possible, the result is implementation-dependent.

Inherited from:
Node
def namespaceURI: String

The namespace URI of this node, or null if it is no namespace. In Firefox 3.5 and earlier, HTML elements are in no namespace. In later versions, HTML elements are in the http://www.w3.org/1999/xhtml namespace in both HTML and XML trees. Though the specification requires namespaceURI to be defined on the Node interface, Gecko-based browsers implement it on the Element interface.

The namespace URI of this node, or null if it is no namespace. In Firefox 3.5 and earlier, HTML elements are in no namespace. In later versions, HTML elements are in the http://www.w3.org/1999/xhtml namespace in both HTML and XML trees. Though the specification requires namespaceURI to be defined on the Node interface, Gecko-based browsers implement it on the Element interface.

Inherited from:
Node

Returns the node immediately following the specified one in its parent's childNodes list, or null if the specified node is the last node in that list.

Returns the node immediately following the specified one in its parent's childNodes list, or null if the specified node is the last node in that list.

Inherited from:
Node
def nodeName: String

Returns a DOMString containing the name of the Node. The structure of the name will differ with the name type. E.g. An HTMLElement will contain the name of the corresponding tag, like 'audio' for an HTMLAudioElement, a Text node will have the '#text' string, or a Document node will have the '#document' string.

Returns a DOMString containing the name of the Node. The structure of the name will differ with the name type. E.g. An HTMLElement will contain the name of the corresponding tag, like 'audio' for an HTMLAudioElement, a Text node will have the '#text' string, or a Document node will have the '#document' string.

Inherited from:
Node
def nodeType: Int

The read-only Node.nodeType property returns an unsigned short integer representing the type of the node.

The read-only Node.nodeType property returns an unsigned short integer representing the type of the node.

Inherited from:
Node
def normalize(): Unit

Puts the specified node and all of its subtree into a "normalized" form. In a normalized subtree, no text nodes in the subtree are empty and there are no adjacent text nodes.

Puts the specified node and all of its subtree into a "normalized" form. In a normalized subtree, no text nodes in the subtree are empty and there are no adjacent text nodes.

Inherited from:
Node

Returns the Document that this node belongs to. If no document is associated with it, returns null.

Returns the Document that this node belongs to. If no document is associated with it, returns null.

Inherited from:
Node

Returns a Node that is the parent of this node. If there is no such node, like if this node is the top of the tree or if doesn't participate in a tree, this property returns null.

Returns a Node that is the parent of this node. If there is no such node, like if this node is the top of the tree or if doesn't participate in a tree, this property returns null.

Inherited from:
Node

Returns the node immediately preceding the specified one in its parent's childNodes list, null if the specified node is the first in that list.

Returns the node immediately preceding the specified one in its parent's childNodes list, null if the specified node is the first in that list.

Inherited from:
Node
def propertyIsEnumerable(v: String): Boolean
Inherited from:
Object
def removeChild(oldChild: Node): Node

Removes a child node from the current element, which must be a child of the current node.

Removes a child node from the current element, which must be a child of the current node.

Inherited from:
Node
def removeEventListener[T <: Event](`type`: String, listener: Function1[T, _], options: EventListenerOptions): Unit

Removes the event listener previously registered with EventTarget.addEventListener.

Removes the event listener previously registered with EventTarget.addEventListener.

This implementation accepts a settings object of type EventListenerOptions.

Inherited from:
EventTarget
def removeEventListener[T <: Event](`type`: String, listener: Function1[T, _], useCapture: Boolean): Unit

Removes the event listener previously registered with EventTarget.addEventListener.

Removes the event listener previously registered with EventTarget.addEventListener.

Inherited from:
EventTarget
def replaceChild(newChild: Node, oldChild: Node): Node

Replaces one child Node of the current one with the second one given in parameter.

Replaces one child Node of the current one with the second one given in parameter.

Inherited from:
Node
def toLocaleString(): String
Inherited from:
Object
def valueOf(): Any
Inherited from:
Object

Inherited fields

var innerText: String

Represents the "rendered" text content of a node and its descendants. As a getter, it approximates the text the user would get if they highlighted the contents of the element with the cursor and then copied to the clipboard.

Represents the "rendered" text content of a node and its descendants. As a getter, it approximates the text the user would get if they highlighted the contents of the element with the cursor and then copied to the clipboard.

Inherited from:
Node
var nodeValue: String

Is a DOMString representing the value of an object. For most Node type, this returns null and any set operation is ignored. For nodes of type TEXT_NODE (Text objects), COMMENT_NODE (Comment objects), and PROCESSING_INSTRUCTION_NODE (ProcessingInstruction objects), the value corresponds to the text data contained in the object.

Is a DOMString representing the value of an object. For most Node type, this returns null and any set operation is ignored. For nodes of type TEXT_NODE (Text objects), COMMENT_NODE (Comment objects), and PROCESSING_INSTRUCTION_NODE (ProcessingInstruction objects), the value corresponds to the text data contained in the object.

Inherited from:
Node
var textContent: String

Is a DOMString representing the textual content of an element and all its descendants.

Is a DOMString representing the textual content of an element and all its descendants.

Inherited from:
Node