Skip to content

Instantly share code, notes, and snippets.

@dmix
Created June 15, 2011 20:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dmix/1027997 to your computer and use it in GitHub Desktop.
Save dmix/1027997 to your computer and use it in GitHub Desktop.
var email = $('#email').val();
$.ajax({
type: "POST",
dataType: 'json',
data: "email=" + email,
processData: false,
url: "/emails",
success: function (data) {
//insert html into page
$('#new_content').html(data["email"]);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment