document.write('
loading now...
'); // 読込み成功時の処理 var successCallback = function (response) { if(response == 'false'){ $("#feeds1").html("Feed can't be read."); }else{ $("#feeds1").html(response); } }; // 読込み失敗時の処理 var errorCallback = function (xml, status, e) { $("#feeds1").html("Feed can't be read."); }; // リクエスト処理 $.ajax({ type: 'GET', url: '/basercms/feed/index/1', success: successCallback, error: errorCallback });