jQuery:
$.ajax({ url : url, type : \'GET\', dataType: \'json\', data: { \'FN\' : \'GetPages\', \'PIN\' : \'7659\' }, xhrFields
I cant figured out from the image, but if you are trying send AJAX request to different domain, you need to use JSONP, simple AJAX request will not be sufficient
Try to change dataType: 'json' to dataType: 'jsonp'
dataType: 'json'
dataType: 'jsonp'
and add callback=? to your URL
callback=?
URL