2012-11-18 16:38:07 +04:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<link rel="stylesheet" type="text/css" href="tst.css">
|
|
|
|
<title>DOM lastElementChild reference</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>DOM lastElementChild reference</h1>
|
2016-02-04 18:11:19 +03:00
|
|
|
<noscript><p>Javascript is disabled</p></noscript>
|
2012-11-18 16:38:07 +04:00
|
|
|
<p><b>head.lastElementChild:</b> <script>document.write(document.head.lastElementChild.textContent);</script></p>
|
|
|
|
<p><b>body.lastElementChild:</b> <script>document.write(document.body.lastElementChild.textContent);</script></p>
|
2015-10-21 19:46:43 +03:00
|
|
|
<h1>DOM nodes should be 'null' if not present</h1>
|
|
|
|
<p><b>head.firstElementChild.lastElementChild:</b> <script>document.write(document.head.firstElementChild.lastElementChild);</script></p>
|
2012-11-18 16:38:07 +04:00
|
|
|
</body>
|
|
|
|
</html>
|