DHTML Methods
Removes the given attribute from the object.
bSuccess = object.removeAttribute ( "sName"
[ , iCaseSensitive ] )
sName |
Required. String specifying the attribute name. |
iCaseSensitive |
Optional. Integer specifying whether to use a case-sensitive search to locate the attribute. By default, this value is set to 1 to indicate that the uppercase and lowercase letters in the specified sName parameter must match exactly those in the attribute name. If there are multiple attributes specified with different case sensitivity, the attribute returned might vary across platforms. |
Boolean. Returns true if successful, or false otherwise.
If two or more attributes have the same name ( differing only in uppercase and lowercase letters ) and iCaseSensitive is set to 0, this method removes only the last attribute ( the last to be created with this name ). All other attributes of the same name are ignored.