The DOMInnerHTML property sets or determines the inner HTML code that is between the start and end tag of the DOM element.
|
Syntax | |||||
|
DOMInnerHTML(ByVal ElementID As String) | |||||
|
Return value | |||||
|
Type |
Description | ||||
|
String |
The inner HTML code | ||||
|
Parameter | |||||
|
Use |
Name |
Type |
Passing |
Description | |
|
Required |
ElementID |
String |
ByVal |
ID of the DOM element | |
Example:
There is an element in the DOM with the ID IDtitle. Then the following command sets the inner HTML of the element to product configurator.
Client.WebClient.DOMInnerHTML("IDTitel") := "Product configurator"