1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-27 02:56:18 -04:00
elinks/test/ecmascript/body.html

21 lines
262 B
HTML
Raw Permalink Normal View History

2021-05-12 11:16:10 -04:00
<!DOCTYPE html>
<html>
<body id="test">
<button onclick="myFunction()">Try it</button>
<a href="/">/</a>
<a href="/home">/home</a>
<p id="demo"></p>
<script>
function myFunction() {
var x = document.body.id;
window.alert(x);
2021-05-12 11:16:10 -04:00
}
</script>
</body>
</html>