Skip to content

Instantly share code, notes, and snippets.

@adampatterson
Created August 21, 2013 20:03
Show Gist options
  • Save adampatterson/6299459 to your computer and use it in GitHub Desktop.
Save adampatterson/6299459 to your computer and use it in GitHub Desktop.
var surl = "http://tentaclecms.com/api/feed/json/";
$.ajax({
url: surl,
dataType: "jsonp",
jsonp : "callback",
jsonpCallback: "jsonpcallback",
success: function jsoncallback(json) {
$.each(json, function(i, item){
$(".feed").append('<li><h3><a href="' + item.url + '">' + item.title + '</a></h3><p>' + item.content +' <a href="' + item.url + '"> Read more »</a></p></li>');
});
},
error: function(e) {
$(".feed").append('<li><h3>' + e.message + '</h3></li>');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment