別のドメインからJSONデータを取得する機能がありますが、何が問題なのかわかりません。成功関数を起動することはなく、エラーは返されません。
$.ajax({
url: "http://other-domain.com/sample/Json.aspx",
dataType: "jsonp",
type: 'get',
crossDomain: true,
jsonp: 'jsonp_callback',
success: function() {
alert('abc'); //when success take json data string but i din get in here
}
});
ここで何が悪いのか誰か知っていますか?