12 lines
396 B
HTML
12 lines
396 B
HTML
<html>
|
|
<head>
|
|
<link rel="stylesheet" type="text/css" href="tst.css">
|
|
<title>DOM childElementCount reference</title>
|
|
</head>
|
|
<body>
|
|
<h1>DOM childElementCount reference</h1>
|
|
<p><b>head.childElementCount:</b> <script>document.write(document.head.childElementCount);</script></p>
|
|
<p><b>body.childElementCount:</b> <script>document.write(document.body.childElementCount);</script></p>
|
|
</body>
|
|
</html>
|