mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-03 08:07:17 -05:00
21 lines
288 B
HTML
21 lines
288 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body id="test">
|
|
|
|
<button onclick="myFunction()">Click to see id of body element.</button>
|
|
|
|
<a href="/">/</a>
|
|
<a href="/home">/home</a>
|
|
|
|
<p id="demo"></p>
|
|
|
|
<script>
|
|
function myFunction() {
|
|
var x = document.body.id;
|
|
window.alert(x);
|
|
}
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|