topical media & game development

talk show tell print

professional-javascript-10-IERangeExample6.htm / htm



  <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("Hello World");
                  oRange2.findText("Hello");
                  alert("oRange1.isEqual(oRange2): " + oRange1.isEqual(oRange2));
                  alert("oRange1.inRange(oRange2): " + oRange1.inRange(oRange2));
              }
          </script>
      </head>
      <body><p id="p1"><b>Hello</b> World</p>
          <input type="button" value="Use Ranges" onclick="useRanges()" />    
          <p><strong>Note:</strong> This example uses Internet Explorer ranges and will only work on Internet Explorer.</p>
      
      </body>
  </html>
  


(C) Æliens 20/2/2008

You may not copy or print any of this material without explicit permission of the author or the publisher. In case of other copyright issues, contact the author.