/** * jQueryの新しい公式プラグイン、テンプレート機能を試すよ! * 紹介記事は http://goo.gl/eAZq * Template Plugin本体は * http://github.com/jquery/jquery-tmpl/blob/master/jquery.tmpl.js * から持ってきたよ! * * JSON返すAPIとかなり仲良くなれる気がするよ! * */ /* * jQuery Templating Plugin * Copyright 2010, John Resig * Dual licensed under the MIT or GPL Version 2 licenses. */ (function( jQuery, undefined ){ var oldManip = jQuery.fn.domManip, tmplItmAtt = "_

