jQueryのみで、プラグインを使わず、XMLをきれいにパース。

下のような外部に置いたXML(バックが黄緑の部分)をパースし、きれいに整形して表示(ブルーのボーダー部分)します。
参考:http://papermashup.com/parse-xml-with-jquery/
<?xml version="1.0" encoding="utf-8" ?>
<RecentBooks>
<Book>
<Title>My Cool Book Title</Title>
<Description>The my cool book is possibly the best cool book in that any developer could use to be a great web designer.</Description>
<Date>12/1/2010</Date>
</Book>
<Book>

・(中略)

</Book>
<Book>
<Title>MySQL Database Book</Title>
<Description>Brush up your knowledge with the best MySQL database book on the market.</Description>
<Date>14/2/2010</Date>
</Book>
</RecentBooks>