Click to See Complete Forum and Search --> : properties of document


geuis
02-03-2003, 08:38 AM
You can do things w/ document like

document.write
document.forms, etc.

Where can I find a full list of the OOP functions of document?

Thanks!

AdamGundry
02-03-2003, 08:57 AM
You can use the Netscape manual here:

http://developer.netscape.com/docs/manuals/js/client/jsref/document.htm

The full framed version is available here:

http://developer.netscape.com/docs/manuals/js/client/jsref/index.html

Adam

Charles
02-03-2003, 08:10 PM
You can generate a list of all the properties of the document object in any particular JavaScript enabled browser thus:

<pre>
<script type="text/javascript">
<!--
for (param in document) {document.writeln(param)}
// -->
</script>
</pre>