so this is the actual JSON data???
- $('div').json({a:12,b:['a','b','c'],c:{a:1,b:2,c:3,"c`":"3^"}})
(I don't suppose this is a very practical way to print data from a JSON... if the JSON is a complex one....;-)
($('div').json()??? I can't find method .json() in jQuery documentation.. unless I'm missing it..
I go back to my orig question.. how do I do for a much more complex JSON that this (I suppose in real life the JSON is not hard-coded anywhere....;-)
I need to pull from a remote JSON (i.e., a domain not my domain), with AJAX (i.e, need to do JSONP....)
thank you....