Displaying the Associative Properties Area of a Window Object : Window Properties « Window Browser « JavaScript DHTML
- JavaScript DHTML
- Window Browser
- Window Properties
Displaying the Associative Properties Area of a Window Object
<HTML>
<HEAD>
<TITLE>Window Object Properties Array</TITLE>
</HEAD>
<BODY>
<SCRIPT>
for (var i in window) {
document.write ("Window property(" + i + "): " +
window[i] + "<BR>");
}
</SCRIPT>
</BODY>
</HTML>
Related examples in the same category