I am a newb with JSONP so I am hoping someone will help me from the ground up.
Basically my situation is:
I have a server with a CMS. I want information from the CMS to appear on several other sites.
So I am thinking (but am unsure) that I put the information I want to transmit in a PHP variable. I then use
echo json_encode($json);
then on the sites I wish to display the information on I use JQuery to:
$.ajax({
url: 'http://www.mycmssite.com/phppage.php?json',
dataType: 'json',
data: json,
success: callback
});
var myvar = success;
document.write(myvar);
Now this is my preliminary understanding and I know its full of holes. But if someone could point me in the right direction that would be awesome!
Thanks heaps!
var myvar = success; document.write(myvar);is stange. Your callback function must set (and use) the data. – dystroy Jun 5 '12 at 11:01