Created
October 27, 2021 09:25
-
-
Save Octagon-simon/2f6a0942aef943ec7d1100d4fb4ccf3b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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