Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save Octagon-simon/0c9255e9597b4b6f5c79bd009171fa3f to your computer and use it in GitHub Desktop.
$(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