deleteContents
Removes the contents of a Range from the document.
Syntax
Parameters
Example
range = document.createRange(); range.selectNode( document.getElementsByTagName("div").item(0)); range.deleteContents();
Notes
Unlike extractContents, this method does not return a documentFragment containing the deleted content.
Specification
Netscape Communications http://developer.netscape.com |