jQueryでAjaxを行う$.ajax関数に、Yahoo Query Language APIを利用したクロスドメインAjax機能を追加するjQuery Pluginを作りました。ソースはgithubにあります。 https://github.com/yatt/jquery.xdomainrequest インクルードするとこんな感じでクロスドメインのリクエストができるようになります。 $.ajax({ url: ['http://externalsite.com/x.json', 'http://ex.jp/y.json'] dataType: 'xdomain:json' success: function(data){ console.log(data[0].result.count) // x.json console.log(data[1].user.id) // y.json