Last active
December 16, 2015 12:19
-
-
Save chikoski/5433993 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset=utf-8 /> | |
<title>押すなよ!</title> | |
</head> | |
<body> | |
<button id="pressme">押すなよ!</button> | |
</body> | |
</html> |
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
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