mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-03 08:07:17 -05:00
17 lines
442 B
HTML
17 lines
442 B
HTML
<html>
|
|
<body>
|
|
<a href="/home">BBB</a>
|
|
<b dir="ltr" id="aaaa" class="a b c">bbb</b>
|
|
<a dir="rtl" id="blabla" href="/">BBB<b id="b1">AAA</b><u dir="auto" id="ble" title="test">UUU</u>AAAAAAA
|
|
</a>
|
|
<a id="bb" dir="blalalala" href="/">BB</a>
|
|
<script>
|
|
function aa()
|
|
{
|
|
window.alert(document.getElementById('blabla').firstElementChild.outerHTML);
|
|
}
|
|
</script>
|
|
<button onclick="return aa()">blabla firstElementChild outerHTML</button>
|
|
</body>
|
|
</html>
|