PS. Hoe zet je dit ook al weer in code?
<script>
$.ajax({
type: "GET",
url: "http://www.dagelijkseoverdenkingen.nl/json/",
dataType: "json",
success: function (data) {
var obj = data.Articles, // get entry object (array) from JSON data
ul = $("<ul>"); // create a new ul element
// iterate over the array and build the list
for (var i = 0, l = obj.length; i < l; ++i) {
ul.append("<li><a href='" + obj.[i].ID + "'>" + obj.[i].Title + "</a></li>");
}
$("#results").append(ul); // add the list to the DOM
}
});
</script>