Skip to content

Instantly share code, notes, and snippets.

@Octagon-simon
Created October 27, 2021 09:25
Show Gist options
  • Select an option

  • Save Octagon-simon/2f6a0942aef943ec7d1100d4fb4ccf3b to your computer and use it in GitHub Desktop.

Select an option

Save Octagon-simon/2f6a0942aef943ec7d1100d4fb4ccf3b to your computer and use it in GitHub Desktop.
document.addEventListener('DOMContentLoaded', (event) => {
document.querySelector('#btn_save').addEventListener('click', function() {
var fname = document.querySelector('#inp_fname').value;
var lname = document.querySelector('#inp_lname').value;
var email = document.querySelector('#inp_email').value;
saveForm(fname, lname, email);
});
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment