'getAttribute()' Syntax, Parameters and Note : getAttribute « Javascript Methods « JavaScript Reference

'getAttribute()' Syntax, Parameters and Note

Note:

Returns the attribute.
    
Syntax:
    
objectName.getAttribute(param1, param2)
document.getElementById("elementID").getAttribute(param1, param2)
document.all.elementID.getAttribute(param1, param2) // IE only

Parameters:
    param1   Required; the attribute's name.
    

      
      








Related examples in the same category

1.'getAttribute()' Example
2.'getAttribute()' is applied to