August 2006
Intermediate to advanced
1018 pages
34h 13m
English
Element.hasAttribute( ): determine whether this element has a specified attribute — DOM Level 2 Core:
boolean hasAttribute(Stringname);name
The name of the desired attribute.
true if this element has
a specified or default value for the named attribute, and false otherwise.
This method determines whether an element has an attribute
with the specified name but does not return the value of that
attribute. Note that hasAttribute(
) returns true if the
named attribute is explicitly specified in the document and also if
the named attribute has a default value specified by the internal
subset of the document type.
Element.getAttribute( ),
Element.setAttribute( )
Read now
Unlock full access