You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
959 B
23 lines
959 B
<html>
|
|
<head>
|
|
<title>DOM element reflection reference</title>
|
|
<link rel="stylesheet" type="text/css" href="tst.css">
|
|
</head>
|
|
<body>
|
|
<h1 id="header" class="normal">DOM firstElementChild reference (#header .normal)</h1>
|
|
<noscript><p>Javascript is disabled</p></noscript>
|
|
<p><b>body.firstElementChild.id:</b> <script>document.write(document.body.firstElementChild.id);</script></p>
|
|
<p><b>body.firstElementChild.className:</b> <script>document.write(document.body.firstElementChild.className);</script></p>
|
|
|
|
<script>
|
|
document.body.firstElementChild.id = "replacedid"
|
|
document.body.firstElementChild.className = "replacedclass"
|
|
</script>
|
|
|
|
<h1>DOM firstElementChild reference (#replacedid .replacedclass)</h1>
|
|
<p><b>body.firstElementChild.id:</b> <script>document.write(document.body.firstElementChild.id);</script></p>
|
|
<p><b>body.firstElementChild.className:</b> <script>document.write(document.body.firstElementChild.className);</script></p>
|
|
|
|
</body>
|
|
</html>
|