Skip to content

Instantly share code, notes, and snippets.

@fatihtoprak
Created February 19, 2013 20:31
Show Gist options
  • Select an option

  • Save fatihtoprak/4989659 to your computer and use it in GitHub Desktop.

Select an option

Save fatihtoprak/4989659 to your computer and use it in GitHub Desktop.
$(document).ready(function() {
$.ajax({
url: "www.facebook.com/feeds/page.php?id=255576081168962&format=json",
dataType: "json",
timeout: 15000,
success: function(data) {
$("#FacebookUpdates").append("<li>" + data[i].title);
},
error: function() {
alert("Başarısız.");
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment