Skip to content

Instantly share code, notes, and snippets.

@gmelodie
Last active January 27, 2019 15:26
Show Gist options
  • Save gmelodie/ff33b4f0cb3c9c2f8b3b2096ed7b564d to your computer and use it in GitHub Desktop.
Save gmelodie/ff33b4f0cb3c9c2f8b3b2096ed7b564d to your computer and use it in GitHub Desktop.
JavaScript example, gets input text and shows in alert window
<html>
<script type="text/javascript">
function popup_window() {
alert(document.getElementById('input1').value);
}
</script>
<input name="window-text" type="text" id="input1">
<button onclick="popup_window()"> Submit </button>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment