Open In App

HTML DOM Range endOffset property

The endOffset property returns a number representing an Offset index where the Range ends. This is a read-only property.

If the parent node of Range is a Node of type Text then the offset index will be the index of ending character of the Range. For other Node types, the endOffset is the index of child nodes at the ending of the parent node.



Syntax:

end = range.endOffset;

Return Value: It returns a Offset index of ending of the range.



Example: In this example, we will use this property to get endOffset index.

Here the range’s endOffset index is 4th node from endContainer node.




<html>
<head>
<title>HTML DOM range endOffset property</title>   
</head>
<body>
    <h1>GeeksforGeeks</h1>
     
 
<p>This is the Range Content</p>
 
 
</body>
<script>
    let range = document.createRange();
    let referenceNode = document.getElementsByTagName('p').item(0);
    range.selectNode(referenceNode);
    console.log(range.endContainer);
    index=range.endOffset;
    console.log(index);
</script>
</html>

Output: In console, the endOffset Index can be seen.

Supported Browsers: 

Article Tags :