ZVON > References > DOM1 Reference

name (attribute)

Owning interface and usage:  
Attr.name

Member of these other interfaces :  
none

Readonly:   yes

Type:   DOMString

Description:  
Returns the name of this attribute.


Example:
JavaScript:
  var attr = document.createAttribute('temp');
  var output = attr.name;
Output:
desired your browser
temp