close
The document.close() method finishes writing to the open document.
Syntax
document.close()Parameters
Example
// open a document to write to it. // finish by closing the document. document.open(); document.write("<P>The only content</P>."); document.close();
Notes
Specification
Netscape Communications http://developer.netscape.com |