topical media & game development

talk show tell print

professional-javascript-10-DOMRangeExample5.htm / htm



  <html>
      <head>
          <title>DOM Range Example</title>
          <script type="text/javascript">
              function extractContent() {
                  var oP1 = document.getElementById("p1");
                  var oHello = oP1.firstChild.firstChild;
                  var oWorld = oP1.lastChild;
                  var oRange = document.createRange();
                  
                  oRange.setStart(oHello, 2);
                  oRange.setEnd(oWorld, 3);
                  var oFragment = oRange.extractContents();
                  document.body.appendChild(oFragment);
                  
                  
              }
          </script>
      </head>
      <body><p id="p1"><b>Hello</b> World</p>
          <input type="button" value="Extract Content" onclick="extractContent()" />  
          <p><strong>Note:</strong> This example uses DOM ranges and will only work in browsers that support DOM ranges. This example will fail in 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.