Mega Code Archive

 
Categories / JavaScript DHTML / Javascript Objects
 

Expose the prperties of Objects

<html> <head> <title>Expose the Objects</title> </head> <body> <script type="text/javascript"> for (docprop in document) {    document.writeln(docprop + "=");    eval ("document.writeln(document." + docprop + ")");    document.writeln("<br />"); } </script> </body> </html>