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

'appendData()' Syntax, Parameters and Note

Note:

Appends a character string to the end.
    
Syntax:
    
textNodeName.appendData(param1) // IE only
document.getElementById("commentID").appendData(param1)
document.all.commentID.appendData(param1) // IE only


Parameters:
    param1   Required; the new character string.

    

      
      








Related examples in the same category

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