Skip to content

Instantly share code, notes, and snippets.

@pa-0
Forked from asfaltboy/submit_form.js
Created January 18, 2025 01:00
Show Gist options
  • Save pa-0/18dfb4af2e3e7be6e21e7484e378f839 to your computer and use it in GitHub Desktop.
Save pa-0/18dfb4af2e3e7be6e21e7484e378f839 to your computer and use it in GitHub Desktop.
generic form submission over ajax with jsonp response
$('#form').submit(function() {
payload = $(this).serialize();
$.ajax({
url: 'http://',
type: 'POST',
data: payload,
dataType: 'jsonp'
success: function(data){
// present success message here
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment