2021-11-30 19:08:37 +05:30

16 lines
314 B
HTML

<!doctype html>
<html>
<head>
<title>Dynamic event manipulation</title>
</head>
<body>
<div>Hello World 1</div>
<div>Hello World 2</div>
<div>Hello World 3</div>
<script>
const myEles = document.getElementsByTagName("div");
console.log(myEles[1]);
</script>
</body>
</html>