/*
* @title 面倒な仕様が増えた
* @description クロスオリジンリクエストをブロック: 同一生成元ポリシーにより、http://h.hatena.ne.jp/api/statuses/user_timeline/mafucode.xml?count=3 にあるリモートリソースの読み込みを拒否します。リソースを同一ドメインに移動するか、CORS を有効にすると解決できます。
* @include http://*
* @license MIT License (XHRの関数の部分以外)
* @require
*/
(function(){
// http://let.hatelabo.jp/mafucode/let/gYC-x8jmyuDfIQ
function get(uri, success, error) {
var xhr = new XMLHttpRequest();
xhr.open("GET", uri);
xhr.addEventListener('readystatechange', function(event) {
if (event.target.readyState == 4) {
if (event.target.status == 200) {
success(event.target, uri, success, error);
} else {
error(event.target, uri, success, error);
}
}
}, false);
xhr.send();
return xhr;
}
get("http://h.hatena.ne.jp/api/statuses/user_timeline/mafucode.json?count=3",function(xhr,uri){
var o=JSON.parse(xhr.responseText);
},console.log);
})();