Accessing Elements: Accessingelements - HTML

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 2

Accessing Elements:

accessingelements.html
!
!

<!doctype html>
<html>
<head>
<title>Learning Javascript</title>

<meta charset="utf-8" />
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />



</head>

<body>

<p id="text">Some text</p>

<script type="text/javascript">

// This is a comment

/*


This is a multi-line
comment



*/

document.getElementById("text").innerHTML="Some more text";



</script>

</body>
</html>

You might also like