Baseline Widely available
The getNumberOfChars()
method of the SVGTextContentElement
interface represents the total number of addressable characters available for rendering within the current element, regardless of whether they will be rendered.
None.
Return valueA long.
Examples Counting Characters in a Text Element<svg width="300" height="100">
<text id="exampleText" x="10" y="50">Hello, SVG World!</text>
</svg>
const textElement = document.getElementById("exampleText");
// Get the number of characters in the text element
const charCount = textElement.getNumberOfChars();
console.log(charCount); // Output: 17
Specifications Browser compatibility
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4