Skip to content

Instantly share code, notes, and snippets.

@Xhendor
Created September 2, 2015 22:18
Show Gist options
  • Save Xhendor/f0e271369508268ac8f1 to your computer and use it in GitHub Desktop.
Save Xhendor/f0e271369508268ac8f1 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>BlogSource</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
</head>
<body>
<div id="contenido">
</div>
<script>
$.ajax({
type: "GET",
dataType: "jsonp",
url: "http://localhost:3000/posts",
success: function(data){
for(var k in data) {
$("#contenido").append("<h1>Titulo"+data[k].title+"</h1><br><p>"+data[k].body+"</p><hr/>");
}
}
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment