Created
November 25, 2012 04:39
-
-
Save novalagung/4142420 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function() { | |
function get(p) { | |
return "https://www.googleapis.com/blogger/v3/blogs/2055792886157683837/" + p +"?key=AIzaSyAYl8yYviScKY6dsHA3qjK3jyKV9_83HP8"; | |
} | |
$.ajax({ | |
url:get("posts/6467499583973436184"), | |
dataType: "jsonp", | |
success: function(data, textStatus, jqXHR) { | |
console.log(data); | |
} | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment