Skip to content

Instantly share code, notes, and snippets.

@chikoski
Last active December 16, 2015 12:19
Show Gist options
  • Save chikoski/5433993 to your computer and use it in GitHub Desktop.
Save chikoski/5433993 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>押すなよ!</title>
</head>
<body>
<button id="pressme">押すなよ!</button>
</body>
</html>
var buttonPressed = function(event){
alert("押したちゃったかー");
};
var btn = document.getElementById("pressme");
btn.onclick = buttonPressed;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment