Skip to content

Instantly share code, notes, and snippets.

@im7mortal
Created February 8, 2015 22:17
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 im7mortal/004edbcdd22cf1175d51 to your computer and use it in GitHub Desktop.
Save im7mortal/004edbcdd22cf1175d51 to your computer and use it in GitHub Desktop.
azVaxz
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<div id='Hello' class='world' onclick="hello()">
Hello world!!!
</div>
</body>
</html>
function hello () {
var element = document.getElementById("Hello");
element.innerHTML = "Hi!!!Lol!!!";
element.style.backgroundColor = "yellow";
}
div {
height: 100px;
}
#Hello {
width: 100px;
}
.world {
background-color: orange
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment