November 2001
Intermediate to advanced
936 pages
68h 43m
English
HTMLDocument.write( ) — append HTML text to an open document
DOM Level 1 HTML
void write(String text);text
The HTML text to be appended to the document.
This method appends the specified HTML text to the document, which
must have been opened with the open( ) method and
must not yet have been closed with close( ).
See Document.write( ) in the client-side reference section for complete details, but note that this standardized version of that Level 0 method accepts only a single string argument, not an arbitrary number of arguments.
HTMLDocument.open( ); Document.write( ) in the client-side reference section