Open In App

HTML DOM Range setStartBefore() Method

Last Updated : 07 Jul, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

The HTML DOM Range setStartBefore() method is used to set the starting position of a Range. An element that is used to set the starting point range is referenceNode element. In this method, the reference element is also included in the range.

Syntax:

range.setStartBefore( refNode );

Parameters:

  • refNode: The Node that sets the starting position of the range.

Return Value: This method does not return any value.

Example: This example describes how to set the starting of the range. Also in this example, we have used setEndAfter() method to set the ending of the range. The start reference node is the first <i> element of the document.

HTML




<!DOCTYPE html>
<html>
  
<body>
    <h1>GeeksforGeeks</h1>
  
    The range will start from 1st 
    element in italics <i> RangeStart</i
    and end at 2nd italics element
    <i>RangeEnd</i>
  
    <script>
        var range = document.createRange();
        var refNode1 = document
            .getElementsByTagName("i").item(0);
  
        var refNode2 = document
            .getElementsByTagName("i").item(1);
              
        range.setStartBefore(refNode1);
        range.setEndAfter(refNode2);
        console.log(range);
    </script>
</body>
  
</html>


Output: In console, the created range can be seen.

Supported Browsers: 

  • Google Chrome
  • Edge
  • Firefox
  • Safari
  • Opera

Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads