Class

org.scalajs.dom.raw

Text

Related Doc: package raw

Permalink

class Text extends CharacterData

The Text interface represents the textual content of Element or Attr.  If an element has no markup within its content, it has a single child implementing Text that contains the element's text.  However, if the element contains markup, it is parsed into information items and Text nodes that form its children.

New documents have a single Text node for each block of text. Over time, more Text nodes may be created as the document's content changes. The Node.normalize() method merges adjacent Text objects back into a single node for each block of text.

MDN

Annotations
@RawJSType() @native() @JSGlobal()
Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Text
  2. CharacterData
  3. NonDocumentTypeChildNode
  4. Node
  5. EventTarget
  6. Object
  7. Any
  8. AnyRef
  9. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Text()

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def addEventListener[T <: Event](type: String, listener: Function1[T, _], useCapture: Boolean = js.native): Unit

    Permalink

    The EventTarget.addEventListener() method registers the specified listener on the EventTarget it's called on.

    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).

    MDN

    Definition Classes
    EventTarget
  5. def appendChild(newChild: Node): Node

    Permalink

    Adds a node to the end of the list of children of a specified 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.

    MDN

    Definition Classes
    Node
  6. def appendData(arg: String): Unit

    Permalink

    Appends the given DOMString to the CharacterData.data string; when this method returns, data contains the concatenated DOMString.

    Appends the given DOMString to the CharacterData.data string; when this method returns, data contains the concatenated DOMString.

    MDN

    Definition Classes
    CharacterData
  7. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  8. def attributes: NamedNodeMap

    Permalink

    .attributes is a collection of all attribute nodes registered to the specified 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).  

    MDN

    Definition Classes
    Node
  9. def childNodes: NodeList

    Permalink

    Returns a live NodeList containing all the children of this 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.

    MDN

    Definition Classes
    Node
  10. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  11. def cloneNode(deep: Boolean = js.native): Node

    Permalink

    Clone a Node, and optionally, all of its contents.

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

    MDN

    Definition Classes
    Node
  12. def compareDocumentPosition(other: Node): Int

    Permalink

    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.

    MDN

    Definition Classes
    Node
  13. def contains(otherNode: Node): Boolean

    Permalink

    Returns a Boolean value indicating whether a node is a descendant of a given node, i.e.

    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.

    MDN

    Definition Classes
    Node
  14. var data: String

    Permalink

    Is a DOMString representing the textual data contained in this object.

    Is a DOMString representing the textual data contained in this object.

    MDN

    Definition Classes
    CharacterData
  15. def deleteData(offset: Int, count: Int): Unit

    Permalink

    Removes the specified amount of characters, starting at the specified offset, from the CharacterData.data string; when this method returns, data contains the shortened DOMString.

    Removes the specified amount of characters, starting at the specified offset, from the CharacterData.data string; when this method returns, data contains the shortened DOMString.

    MDN

    Definition Classes
    CharacterData
  16. def dispatchEvent(evt: Event): Boolean

    Permalink

    Dispatches an Event at the specified EventTarget, invoking the affected EventListeners in the appropriate order.

    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().

    MDN

    Definition Classes
    EventTarget
  17. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  18. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  19. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  20. def firstChild: Node

    Permalink

    Returns the node's first child in the tree, or null if the node is childless.

    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.

    MDN

    Definition Classes
    Node
  21. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  22. def hasAttributes(): Boolean

    Permalink

    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.

    MDN

    Definition Classes
    Node
  23. def hasChildNodes(): Boolean

    Permalink

    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.

    MDN

    Definition Classes
    Node
  24. def hasOwnProperty(v: String): Boolean

    Permalink
    Definition Classes
    Object
  25. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  26. def insertBefore(newChild: Node, refChild: Node): Node

    Permalink

    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.

    MDN

    Definition Classes
    Node
  27. def insertData(offset: Int, arg: String): Unit

    Permalink

    Inserts the specified characters, at the specified offset, in the CharacterData.data string; when this method returns, data contains the modified DOMString.

    Inserts the specified characters, at the specified offset, in the CharacterData.data string; when this method returns, data contains the modified DOMString.

    MDN

    Definition Classes
    CharacterData
  28. def isDefaultNamespace(namespaceURI: String): Boolean

    Permalink

    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.

    MDN

    Definition Classes
    Node
  29. def isEqualNode(arg: Node): Boolean

    Permalink

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

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

    MDN

    Definition Classes
    Node
  30. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  31. def isPrototypeOf(v: Object): Boolean

    Permalink
    Definition Classes
    Object
  32. def isSameNode(other: Node): Boolean

    Permalink

    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.

    MDN

    Definition Classes
    Node
  33. def isSupported(feature: String, version: String): Boolean

    Permalink

    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.

    MDN

    Definition Classes
    Node
  34. def lastChild: Node

    Permalink

    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.

    MDN

    Definition Classes
    Node
  35. def length: Int

    Permalink

    Returns an unsigned long representing the size of the string contained in CharacterData.data.

    Returns an unsigned long representing the size of the string contained in CharacterData.data.

    MDN

    Definition Classes
    CharacterData
  36. def localName: String

    Permalink

    Returns a DOMString representing the local part of the qualified name of an element.

    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.

    MDN

    Definition Classes
    Node
  37. def lookupNamespaceURI(prefix: String): String

    Permalink

    Takes a prefix and returns the namespaceURI associated with it on the given node if found (and null if not).

    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.

    MDN

    Definition Classes
    Node
  38. def lookupPrefix(namespaceURI: String): String

    Permalink

    Returns the prefix for a given namespaceURI if present, and null if not.

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

    MDN

    Definition Classes
    Node
  39. def namespaceURI: String

    Permalink

    The namespace URI of this node, or null if it is no namespace.

    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.

    MDN

    Definition Classes
    Node
  40. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  41. def nextElementSibling: Element

    Permalink

    The nextElementSibling read-only property returns the element immediately following the specified one in its parent's children list, or null if the specified element is the last one in the list.

    The nextElementSibling read-only property returns the element immediately following the specified one in its parent's children list, or null if the specified element is the last one in the list.

    MDN

    Definition Classes
    NonDocumentTypeChildNode
  42. def nextSibling: Node

    Permalink

    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.

    MDN

    Definition Classes
    Node
  43. def nodeName: String

    Permalink

    Returns a DOMString containing the name of the Node.

    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.

    MDN

    Definition Classes
    Node
  44. def nodeType: Int

    Permalink

    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.

    MDN

    Definition Classes
    Node
  45. def nodeValue: String

    Permalink

    Is a DOMString representing the value of an 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.

    MDN

    Definition Classes
    Node
  46. def normalize(): Unit

    Permalink

    Puts the specified node and all of its subtree into a "normalized" form.

    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.

    MDN

    Definition Classes
    Node
  47. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  48. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  49. def ownerDocument: Document

    Permalink

    Returns the Document that this node belongs to.

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

    MDN

    Definition Classes
    Node
  50. def parentNode: Node

    Permalink

    Returns a Node that is the parent of this 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.

    MDN

    Definition Classes
    Node
  51. def previousElementSibling: Element

    Permalink

    The previousElementSibling read-only property returns the Element immediately prior to the specified one in its parent's children list, or null if the specified element is the first one in the list.

    The previousElementSibling read-only property returns the Element immediately prior to the specified one in its parent's children list, or null if the specified element is the first one in the list.

    MDN

    Definition Classes
    NonDocumentTypeChildNode
  52. def previousSibling: Node

    Permalink

    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.

    MDN

    Definition Classes
    Node
  53. def propertyIsEnumerable(v: String): Boolean

    Permalink
    Definition Classes
    Object
  54. def removeChild(oldChild: Node): Node

    Permalink

    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.

    MDN

    Definition Classes
    Node
  55. def removeEventListener[T <: Event](type: String, listener: Function1[T, _], useCapture: Boolean = js.native): Unit

    Permalink

    Removes the event listener previously registered with EventTarget.addEventListener.

    Removes the event listener previously registered with EventTarget.addEventListener.

    MDN

    Definition Classes
    EventTarget
  56. def replaceChild(newChild: Node, oldChild: Node): Node

    Permalink

    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.

    MDN

    Definition Classes
    Node
  57. def replaceData(offset: Int, count: Int, arg: String): Unit

    Permalink

    Replaces the specified amount of characters, starting at the specified offset, with the specified DOMString; when this method returns, data contains the modified DOMString.

    Replaces the specified amount of characters, starting at the specified offset, with the specified DOMString; when this method returns, data contains the modified DOMString.

    MDN

    Definition Classes
    CharacterData
  58. def splitText(offset: Int): Text

    Permalink

    The Text.splitText() method breaks the Textnode into two nodes at the specified offset, keeping both nodes in the tree as siblings.

    The Text.splitText() method breaks the Textnode into two nodes at the specified offset, keeping both nodes in the tree as siblings.

    MDN

  59. def substringData(offset: Int, count: Int): String

    Permalink

    Returns a DOMString containing the part of CharacterData.data of the specified length and starting at the specified offset.

    Returns a DOMString containing the part of CharacterData.data of the specified length and starting at the specified offset.

    MDN

    Definition Classes
    CharacterData
  60. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  61. var textContent: String

    Permalink

    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.

    MDN

    Definition Classes
    Node
  62. def toLocaleString(): String

    Permalink
    Definition Classes
    Object
  63. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  64. def valueOf(): Any

    Permalink
    Definition Classes
    Object
  65. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  66. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  67. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  68. def wholeText: String

    Permalink

    The Text.wholeText read-only property returns all text of all Text nodes logically adjacent to the node.

    The Text.wholeText read-only property returns all text of all Text nodes logically adjacent to the node. The text is concatenated in document order.  This allows to specify any text node and obtain all adjacent text as a single string.

    MDN

Deprecated Value Members

  1. def prefix: String

    Permalink

    Is a DOMString representing the namespace prefix of the node, or null if no prefix is specified.

    Is a DOMString representing the namespace prefix of the node, or null if no prefix is specified.

    MDN

    Definition Classes
    Node
    Annotations
    @deprecated
    Deprecated

    (Since version DOM4) Obsolete.

Inherited from CharacterData

Inherited from NonDocumentTypeChildNode

Inherited from Node

Inherited from EventTarget

Inherited from Object

Inherited from Any

Inherited from AnyRef

Inherited from Any

Ungrouped