faqts : Computers : Programming : Languages : JavaScript : Windows

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

2 of 6 people (33%) answered Yes
Recently 2 of 6 people (33%) answered Yes

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!