Skip to content

Instantly share code, notes, and snippets.

@eriknomitch
Created November 28, 2012 20:41
Show Gist options
  • Save eriknomitch/4164263 to your computer and use it in GitHub Desktop.
Save eriknomitch/4164263 to your computer and use it in GitHub Desktop.
Ajax
$.ajax({
type: "GET",
url: "/pages/ajax",
data: {foo: prompt("What is foo?")},
success: function(data) {
$("title").html(data);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment