Created
March 22, 2023 10:34
-
-
Save bshambaugh/2097200d293cef6b9877c205d8da77a1 to your computer and use it in GitHub Desktop.
simple button clicker ... needs server
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> | |
<head> | |
<meta charset="utf-8" /> | |
<title> Script in head section </title> | |
<script type = "text/javascript"> | |
function ClickMe() { | |
console.log("click") | |
} | |
</script> | |
</head> | |
<body> | |
<button>Click Me!</button> | |
<button onclick="ClickMe()">Click</button> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment