What I am trying to do is parse this JSON: http://www.theunjust.com/test/container.php
And just get it to show at this point…
Here is my current code(its all jacked up)
$(document).ready(function(){
var jsonurl = "container.php";
$.getJSON(jsonurl, function(data) {
$.each(data.encompass,function(i,valu){
var content,
cont = '',
tainers = valu.containers;
$.each(tainers, function (i) {
var tid = tainers[i].TID,
top = tainers[i].Top,
cat = tainers[i].Category,
date = tainers[i].Date,
icon = tainers[i].Icon,
clink = tainers[i].ContainerLink,
uid = tainers[i].UniqueID;
cont += '<a href="' + clink + '">' + uid + '</a> ';
$('ul').append('<li>' + tid + ' - ' + top + ' - ' + cat + ' - ' + date + ' - ' + icon + ' - ' + clink + ' - ' + uid + ' (' + cont + ')</li>');
});
});
});
});
I know that the code doesn’t make sense, this is more of a learning experience for me rather than a functioning tool. The issue may be in the JSON data itself, if that is the case, what stackoverflow web service post would you recommend?
What I eventually aim to do is run multiple web services and combine them… So that container.php loads and has all of the information that is required for a wrapping div, then entries.php loads and fills the divs that was generated by containers..
I’m currently learning jQuery and Honestly, I’m not to this level yet, but I am getting there pretty quick.
I really appreciate the help, and would like if you could point me in the direction to become a JSON parsing pro!