W3cubDocs

/DOM

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

b = textnode.isElementContentWhitespace;

Example

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

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

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

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

Browser compatibilityUpdate compatibility data on GitHub

Desktop
Chrome Edge Firefox Internet Explorer Opera Safari
Basic support No ? ? — 10 No No No
Mobile
Android webview Chrome for Android Edge Mobile Firefox for Android Opera for Android iOS Safari Samsung Internet
Basic support No No ? ? — 10 No No ?

See also

  • The Text interface it belongs to.

© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/Text/isElementContentWhitespace