Window Object Properties Array : Introduction « Window « JavaScript Tutorial






<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>








19.1.Introduction
19.1.1.Windows in Action
19.1.2.Creating Windows
19.1.3.Parent Code for Window Example
19.1.4.Window Object Properties Array