Skip to content

Instantly share code, notes, and snippets.

@iCodeForBananas
Created January 30, 2015 18:16
Show Gist options
  • Select an option

  • Save iCodeForBananas/801266b4125e32f5d8bd to your computer and use it in GitHub Desktop.

Select an option

Save iCodeForBananas/801266b4125e32f5d8bd to your computer and use it in GitHub Desktop.
$.post('/newsletter/subscribe', { email: $('input.subscribe-input').val() }, function(data) {
if (data.error) {
return console.log(data.error);
}
$('.successful-subscribe').show();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment