Created
October 27, 2021 09:27
-
-
Save Octagon-simon/0c9255e9597b4b6f5c79bd009171fa3f 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).ready(function() { | |
| $('#btn_save').on('click', function(){ | |
| var fname = $('#inp_fname').val(); | |
| var lname = $('#inp_lname').val(); | |
| var email = $('#inp_email').val(); | |
| saveForm(fname, lname, email); | |
| }); | |
| }) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment