Skip to content

Instantly share code, notes, and snippets.

@onliniak
Created September 29, 2019 16:27
Show Gist options
  • Save onliniak/f985b530933da3b0b187d3ce7bf4290d to your computer and use it in GitHub Desktop.
Save onliniak/f985b530933da3b0b187d3ce7bf4290d to your computer and use it in GitHub Desktop.
Javascript params from input
<input type="email" name="user">
<input type="password" name="key">
<input name="submit" type="submit" onclick="login()">
function login() {
email = document.getElementsByName("user")[0].value
key = document.getElementsByName("key")[0].value
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment