Skip to content

Instantly share code, notes, and snippets.

@gmelodie
Created January 27, 2019 15:14
Show Gist options
  • Save gmelodie/ecdaca0a4d2e2a90919cfe5825de0652 to your computer and use it in GitHub Desktop.
Save gmelodie/ecdaca0a4d2e2a90919cfe5825de0652 to your computer and use it in GitHub Desktop.
Button to pop up
<html>
<script type="text/javascript">
function popup_window() {
alert("Hello World!");
}
</script>
<button onclick="popup_window()"> Hello World! </button>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment