Alright guys, I'm fairly new to Json, so sorry if this doesn't make alot of sense..
I'm trying to retrieve data from a json file to display in a html document using jQuery. I've been able to console.log the raw json data with this code:
$(document).ready(function ($) {
$.getJSON("http://mtgjson.com/json/AllSets.json", function (data) {
console.log(data);
});
});
Wich gives me the following data.

I'm trying to make an <ul> and put all the data 'name' into the <li> using jQuery. So I end up with a huge list of names. I've been searching for the past 3 hours and haven't found anything that can help me. So any help would be appreciated greatly. Thanks in advance.