「ajaxはもうスーパーサイヤ人と同じくらい普通(c)id:amachang」な時代のための簡単コピペライブラリ function ajax(url,onload){ var x=null try{ x= new XMLHttpRequest; }catch(e){ try{ x= new ActiveXObject("Msxml2.XMLHTTP"); }catch(e){ x= new ActiveXObject("Microsoft.XMLHTTP"); }}; x.onreadystatechange=function(){ if(x.readyState==4) onload(x.responseText); } x.open("GET",url,true); x.send(""); } function ahah(url,id){ ajax(url,function(tx){