Ajax.Requestを使ったテスト

Ajax.RequestをNewしてXMLHttpRequestオブジェクトを生成し、responseXMLでXMLを取得。
こんな感じでXMLを解析して、HTMLの内容を切り替えます。

    var desc = result.getElementsByTagName("description");

    $("content").innerHTML = desc[0].firstChild.nodeValue;
Ajax.Request
page 1
page 2
Ajax.Updater
page 1
page 2

downloadソースのDownload