I am trying call my remote server to retrieve some json data . i tried the below code
$.ajax({
url : url + "&callback=?",
dataType : 'json',
success : function(data) {
alert(data.results.length);
}
});
if i use the twitter url it works for my remote server url firebug gives invalid lable .But is is an valid json.can any one tell me how to overcome this.