Skip to content

Instantly share code, notes, and snippets.

@sohel-rana
Created November 28, 2012 19:34
Show Gist options
  • Save sohel-rana/4163520 to your computer and use it in GitHub Desktop.
Save sohel-rana/4163520 to your computer and use it in GitHub Desktop.
var userEmail=$('#emailinput').val();
$.ajax({
url: 'ajax/sendEmail.php',
data: { email: userEmail },
success: function(data) {
alert('Email has been sent successfully!!!');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment