$("#thumbnails .thumb").find(".viewsCount").each(function(){
var PostID = $(this).html();
$.getJSON("http://tom.is-a-geek.org/tumblr/counters/thomee/go.php?c=yeeeboiii&i=" + PostID + "&justCount=y&format=json&jsoncallback=?",function(data){
$.each(data.items, function(i,item){
//$(this).html(item.views);
alert(item.views);
alert("sigh");
});
});
});
({
"items": [
{
"views": "20"
}
]
})
live @ http://thomee.tumblr.com
any assistance would be appreciated. 🙁

You can’t do a cross-site
getJSONdue to security reasons. So either use local (I mean local as in “same domain”) url ingetJSONor try using a JSONP hack/workaround: http://code.google.com/p/jquery-jsonp/