Re: displaying document properties?

admin

Administrator
Staff member
I an trying to construct a webpage that will "simply"
display all the "document" properties and display six of the properties on a line of text and seperating each property with a space and semi colon.

All I get with (see code) is full vertical list of properties???

<!-- HTML Document Reference myemail1.htm (C) 2003 Visual Software Training Limited --!>

<html>

<head>

<title> object eg</title>


<script language="JavaScript">

for (form in document) {
document.write (form + "<Br>");
}
</script>

</body>

</html>
Please advice???? thanks dave
 
Back
Top