Skip to content

Instantly share code, notes, and snippets.

@stmtk1
Created October 28, 2015 06:04
Show Gist options
  • Save stmtk1/1a8a80501301146708ba to your computer and use it in GitHub Desktop.
Save stmtk1/1a8a80501301146708ba to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
</head>
<body id='body'>
<button id="red">red</button>
<button id="green">green</button>
<button id="blue">blue</button>
<script>
var body = document.getElementById('body');
document.getElementById('red').onclick = function(){body.style.background = '#f00';}
document.getElementById('green').onclick = function(){body.style.background = '#0f0';}
document.getElementById('blue').onclick = function(){body.style.background = '#00f';}
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment