Created
May 29, 2012 08:16
-
-
Save hodbby/2823244 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head><title>simple page</title></head> | |
<body> | |
<h1 id="header">This is JavaScript</h1> | |
<script type="text/javascript"> | |
document.write('Hello World!'); | |
var h1 = document.getElementById("header"); // holds a reference to the <h1> tag | |
h1 = document.getElementsByTagName("h1")[0]; // accessing the same <h1> element | |
</script> | |
<noscript> | |
Your browser either does not support JavaScript, or has JavaScript turned off. | |
</noscript> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment