Removes the specified node and its descendants in an HTML document.
hDoc is htmlDocument = "
<html>
<head/>
<body>
<h2><span>
<p>Text</p>
</span></h2><h3></h3>
</body>
</html>
"
hNode is htmlNode
// body: <div id="div"><p>Text</p></div>
hNodeInsert is htmlNode
hSearchNode is array of htmlNode <- HTMLFindElementByTag(hDoc, "h3")
hNode <- hSearchNode[1]
hNodeInsert..TagName = "div"
HTMLInsertFirstChild(hNode, hNodeInsert)
// body: <h1/><h2><span><p>Text</p></span></h2><h3><div/></h3>
hNodeInsert..TagName = "span"
HTMLInsertLastChild(hNode, hNodeInsert)
// body: <h1/><h2><span><p>Text</p></span></h2><h3><div/><span/></h3>
Trace(hDoc)
HTMLRemove(hNode)
// body: <h2><span><p>Text</p></span></h2>
Trace(hDoc)
Syntax
HTMLRemove(<Node to remove>)
<Node to remove>: htmlNode variable
Name of the htmlNode variable that corresponds to the node to be removed. All of its descendants will be removed.
Business / UI classification: Business Logic