Skip to content

Instantly share code, notes, and snippets.

@wfaler
Created January 17, 2011 23:35
Show Gist options
  • Save wfaler/783704 to your computer and use it in GitHub Desktop.
Save wfaler/783704 to your computer and use it in GitHub Desktop.
json.js
$.ajax({
beforeSend: function(req) {
req.setRequestHeader("Accept", "application/json");
},
type:"GET",
url: url,
success: function(data){
alert("JSON View=" + data);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment