Class Gdome.element


class element : TElement.t -> object .. end
Inherits
method get_tagName : domString
method getAttribute : name:domString -> domString
method getAttributeNS : namespaceURI:domString -> localName:domString -> domString
method getAttributeNode : name:domString -> attr option
method getAttributeNodeNS : namespaceURI:domString ->
localName:domString -> attr option
method getElementsByTagName : name:domString -> nodeList
method getElementsByTagNameNS : namespaceURI:domString -> localName:domString -> nodeList
method hasAttribute : name:domString -> bool
method hasAttributeNS : namespaceURI:domString -> localName:domString -> bool
method removeAttribute : name:domString -> unit
method removeAttributeNS : namespaceURI:domString -> localName:domString -> unit
method removeAttributeNode : oldAttr:attr -> attr
method setAttribute : name:domString -> value:domString -> unit
method setAttributeNS : namespaceURI:domString option ->
qualifiedName:domString -> value:domString -> unit
method setAttributeNode : newAttr:attr -> attr
method setAttributeNodeNS : newAttr:attr -> attr
method as_Element : TElement.t