Mega Code Archive

 
Categories / JavaScript Tutorial / DOM Node
 

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>