Text.isElementContentWhitespace

Obsolete
This feature is obsolete. Although it may still work in some browsers, its use is discouraged since it could be removed at any time. Try to avoid using it.

The Text.isElementContentWhitespace read-only property returns a Boolean flag indicating whether or not the text node's content consists solely of whitespace.

Syntax

JavaScript
b = textnode.isElementContentWhitespace;

Example

In the example below, we create a node with mixed display and whitespace characters and the attribute is false.

JavaScript
var tn = document.createTextNode("Hello world");
tn.isElementContentWhitespace; /* evaluates to false */

For a node that is all whitespace characters, the isElementContentWhitespace evaluates to true.

JavaScript
var ws = document.createTextNode("  \t \r\n   ")
ws.isElementContentWhitespace; /* evaluates to true */

Specifications

Specification Status Comment
DOM
The definition of 'Text' in that specification.
Living Standard Removed from the spec.
Document Object Model (DOM) Level 3 Core Specification
The definition of 'Text.isElementContentWhitespace' in that specification.
Recommendation Initial definition.

Browser compatibility

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support Not supported (Yes)
Removed in 10 (10)
Not supported Not supported Not supported
Feature Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support Not supported (Yes)
Removed in 10.0 (10)
Not supported Not supported Not supported

See also

  • The Text interface it belongs to.

License

© 2016 Mozilla Contributors
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-us/docs/web/api/text/iselementcontentwhitespace

API DOM Obsolete Property Text