ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / HTML file functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Adds a child after the child of the current node in an HTML document.
Example
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)
Syntax
HTMLInsertLastChild(<Source node> , <Node to insert>)
<Source node>: htmlNode variable
Name of the htmlNode variable that corresponds to the insert reference node.
<Node to insert>: htmlNode variable
Name of the htmlNode variable that corresponds to the child node to be inserted after the last child of <Source node>.
Business / UI classification: Business Logic
Component: wd290html.dll
Minimum version required
  • Version 27
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help