Compare the end points of the text range : Text Range : DOM Node JAVASCRIPT TUTORIALS


JAVASCRIPT TUTORIALS » DOM Node » Text Range »

 

Compare the end points of the text range

















This example only works on Internet Explorer.
<html>
    <head>
        <title>IE Range Example</title>
        <script type="text/javascript">
            function useRanges() {
                var oRange1 = document.body.createTextRange();
                var oRange2 = document.body.createTextRange();
                oRange1.findText("B");
                oRange2.findText("A");
                alert(oRange1.compareEndPoints("StartToStart", oRange2));
                alert(oRange1.compareEndPoints("EndToEnd", oRange2));
            }
        </script>
    </head>
    <body><p id="p1"><b>A</b> B</p>
        <input type="button" value="Use Ranges" onclick="useRanges()" />    
    </body>
</html>







HTML code for linking to this page:

Follow Navioo On Twitter

JAVASCRIPT TUTORIALS

 Navioo DOM Node
» Text Range