Mission: To get data from a web service on another site via Ajax
$(document).ready(function(){
$.getJSON("http://dev.sf.orgplus.com/crm.web.forms/test.aspx?callback=?",
function(result){
$(".target").attr("value",result.code);
}
);
});
Code on the Webservice page:
?php
$cb = $_REQUEST['callback'];
echo "$cb({\"code\": \"212 555-1234\"})";
>
Target: