Skip to content

Instantly share code, notes, and snippets.

@paschalidi
Created December 13, 2019 09:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save paschalidi/37802f7a82bb10cf77cf16e0c57ed179 to your computer and use it in GitHub Desktop.
Save paschalidi/37802f7a82bb10cf77cf16e0c57ed179 to your computer and use it in GitHub Desktop.
A simple Dom interview question
<html>
<head>
<title>DOM!!!</title>
</head>
<body>
<h1 id="one">Welcome</h1>
<p>This is the welcome message.</p>
<h2>Technology</h2>
<p>This is the technology section.</p>
<script type="text/javascript">
var text = document.getElementById("one").innerHTML;
alert("text);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment