SoFunction
Updated on 2025-04-03

JS view object function code

<html>
<head>
<title>What objects are there to view a page through JS</title>
</head>
<body>
<textarea  rows="30" cols="30"></textarea>
<table><tbody><tr><td></td></tr></tbody></table>
</body>
</html>
<scrīpt language=javascrīpt>
var o=
var s=""
for(i in o)
{
 if(typeof o[i] == "object")s = s + o[i].tagName + "\r";
}
=s
</scrīpt>