Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

Lesson 2

<!doctype html>
<head>
<title>Javascript with HTML</title>
<script>
/ JS in the head section /
function doSomething() {
document.getElementById("heading").textContent = "New heading";
}
</script>
</head>
<body>
<h1 id="heading">Some Page Heading</h1>
<button onclick="">Click me!</button>
</body>
</html>
by

0 Answers

No Answer posted yet.

Login / Signup to Answer the Question.