Skip to content

Instantly share code, notes, and snippets.

@bshambaugh
Created March 22, 2023 10:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bshambaugh/2097200d293cef6b9877c205d8da77a1 to your computer and use it in GitHub Desktop.
Save bshambaugh/2097200d293cef6b9877c205d8da77a1 to your computer and use it in GitHub Desktop.
simple button clicker ... needs server
<!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