1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-07-04 02:35:29 +00:00
elinks/test/ecmascript/anchors.html

26 lines
489 B
HTML
Raw Normal View History

2021-05-12 15:08:05 +00:00
<!DOCTYPE html>
<html>
<body>
First Name: <input name="fname" type="text" value="Michael"><br>
First Name: <input name="fname" type="text" value="Doug">
2022-08-30 14:07:14 +00:00
<p>Click the button to get the outer html of anchor number 1. Anchors are counted from 0.</p>
2021-05-12 15:08:05 +00:00
<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);
2021-05-12 15:08:05 +00:00
}
</script>
</body>
</html>