|
|
|
|
|
HTMLRemoveAttribute (Function) In french: HTMLSupprimeAttribut Removes a given attribute hDoc is htmlDocument = " <html> <head/> <body> <h2><span> <p>Text</p> </span></h2><h3><div></div><span></span></h3> </body> </html> "  hNode is htmlNode  hSearchNode is array of htmlNode <- HTMLFindElementByTag(hDoc, "h3") hNode <- hSearchNode[1] HTMLModifyAttribute(hNode, "id") // body: <h2><span><p>Text</p></span></h2><h3 id><div></div><span></span></h3> HTMLModifyAttribute(hNode, "id", "h3") // body: <h2><span><p>Text</p></span></h2><h3 id="h3"><div></div><span></span></h3> HTMLRemoveAttribute(hNode, "id") // body: <h2><span><p>Text</p></span></h2><h3><div></div><span></span></h3>
Syntax
HTMLRemoveAttribute(<Source node> , <Attribute>)
<Source node>: htmlNode variable Name of the htmlNode variable that corresponds to the reference node for removing the attribute. <Attribute>: htmlAttribute variable or character string Attribute to be removed. This element can correspond to: - a variable of type htmlAttribute.
- a string corresponding to the attribute to be deleted.
Business / UI classification: Business Logic
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|