Created
June 13, 2019 07:58
-
-
Save ahmetemrekilinc/4b66cb400003e4c3adc09158f53edac7 to your computer and use it in GitHub Desktop.
JS Bin // source https://jsbin.com/buhuyuq
This file contains 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"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<button onclick='myButtonClickHandler()'> | |
my button | |
</button> | |
<script id="jsbin-javascript"> | |
function myButtonClickHandler(){ | |
console.log("myButtonClick is handled"); | |
} | |
</script> | |
<script id="jsbin-source-javascript" type="text/javascript">function myButtonClickHandler(){ | |
console.log("myButtonClick is handled"); | |
}</script></body> | |
</html> |
This file contains 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
function myButtonClickHandler(){ | |
console.log("myButtonClick is handled"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment