jQuery를 이용한 손쉬운 유틸리티 모음을 공유 합니다. 출처는 trac 입니다. (function($){ if (typeof _ == 'undefined') babel.Translations.load({}).install(); $.fn.addAnchor = function(title) { title = title || _("Link here"); return this.filter("*[id]").each(function() { $(" \u00B6").attr("href", "#" + this.id) .attr("title", title).appendTo(this); }); } $.fn.checked = function(checked) { if (checked == undefined) { // gett..