Skip to content

Instantly share code, notes, and snippets.

@jennz0r
Last active July 17, 2018 02:40
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 jennz0r/f6bb880c8a092e3b38b1 to your computer and use it in GitHub Desktop.
Save jennz0r/f6bb880c8a092e3b38b1 to your computer and use it in GitHub Desktop.
Button Click!
<html>
<body>
<button onclick="clicked()">Hello</button>
<script type="text/javascript" src="script.js"></script>
</body>
</html>
function clicked() {
alert("Hello!");
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment