Entry
Can You Give Me A Complete List Of Window Objects ?
Jan 20th, 2007 13:31
Abolfazl Shirazi,
Abolfazl Shirazi
I myself found the script below which shows window properties :
<!-- Begin -->
<html>
<head>
<script language="JavaScript" type="text/javascript">
<!--
function popUpProperties(inobj) {
op = window.open();
op.document.open('text/plain');
for (objprop in inobj) {
op.document.write(objprop + ' => ' + inobj[objprop] + '\n');
}
op.document.close();
}
//-->
</script>
</head>
<body>
<a href="javascript:popUpProperties(window)">Show All Properties Of
Window</a>
</body>
</html>
<!-- End -->
May be another solution works better!