There is not a single clear example that explains how to pull json data as simple as possible. I have a valid json and I need to retrieve it with jQuery
$.getJSON("http://www.pangeaadvisors.org/sep123/blog.cs.asp",{ PROCESS: "ViewBlog" }, function(json) {
for (var i = 0; i < json.length; i++) {
var title = json[i].Title;
$('').html(title).appendTo('#news_wrap');
}
});