Shows what happens when you try to use pasteHTML() while HTML code is selected. : Text Range « DOM Node « JavaScript Tutorial






This example only works on Internet Explorer.

<html>
    <head>
        <title>IE Range Example</title>
        <script type="text/javascript">
            function useRanges() {
                var oRange = document.body.createTextRange();
                var oP1 = document.getElementById("p1");
                oRange.moveToElementText(oP1);
                oRange.pasteHTML("<P><em>Howdy</em> World</p>");
                
            }
        </script>
    </head>
    <body><p id="p1"><b>Hello</b> World</p>
        <input type="button" value="Use Ranges" onclick="useRanges()" />      
    </body>
</html>








23.21.Text Range
23.21.1.Change a Text in TextRange
23.21.2.Move to element text in a text range
23.21.3.Paste HTML into a text range
23.21.4.Shows what happens when you try to use pasteHTML() while HTML code is selected.
23.21.5.Compare the end points of the text range
23.21.6.isEqual and inRange of a text range