Skip to content

Instantly share code, notes, and snippets.

@mpmont
Created October 24, 2012 15:38
Show Gist options
  • Save mpmont/3946820 to your computer and use it in GitHub Desktop.
Save mpmont/3946820 to your computer and use it in GitHub Desktop.
$('#subscribe_newsletter').click(function(){
event.preventDefault();
var form_data = {
name: $('#name').val(),
email: $('#email').val()
};
$.ajax({
url: $('#newsletter_url').val(),
type: 'POST',
data: form_data,
success: function(msg){
$('#confirm_error_message').html(msg);
$('#name').val(' ');
$('#email').val(' ');
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment