mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
26 lines
489 B
HTML
26 lines
489 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
|
|
First Name: <input name="fname" type="text" value="Michael"><br>
|
|
First Name: <input name="fname" type="text" value="Doug">
|
|
|
|
<p>Click the button to get the outer html of anchor number 1. Anchors are counted from 0.</p>
|
|
|
|
<button onclick="myFunction()">Try it</button>
|
|
|
|
<a href="/">/</a>
|
|
<a href="/home">/home</a>
|
|
|
|
<p id="demo"></p>
|
|
|
|
<script>
|
|
function myFunction() {
|
|
var x = document.anchors.item(1).outerHTML;
|
|
window.alert(x);
|
|
}
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|