function GetPrefList(pref) { console.log("GetPrefList"); console.log("pref:"+pref); $.ajax({ type: 'GET', url: '//www2.karaoke.or.jp/karanavi/pref_list.php?pref='+pref, data: { type: "xml", pref: pref }, //data timeout: 2000, error: function(data){ console.log("error:pref23"); }, success: function(data){ $("#com_area").append(data); } //success: function(xml) }); //$.ajax } window.addEventListener("load",function(){ GetPrefList('愛媛県'); });