Skip to content

Instantly share code, notes, and snippets.

@shduff
Created July 21, 2015 21:23
Show Gist options
  • Select an option

  • Save shduff/e7ed8a3f7ed7aef31542 to your computer and use it in GitHub Desktop.

Select an option

Save shduff/e7ed8a3f7ed7aef31542 to your computer and use it in GitHub Desktop.
a simple button alert!
<html>
<head>
<style>
button {
background-color:#ccc;
}
</style>
</head>
<body>
<button style="height:20px; width:100px" type="button" onclick="a()">
</button>
<script>
function a() {
alert("you clicked!")
}
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment