2008-07-23から1日間の記事一覧
Firebugの$$は、自前でセレクタをXPathに直していたりして効率が悪く、CSS3のセレクタにも対応していない。 (プロファイルのフォルダ)/extensions/firebug@software.joehewitt.com/content/firebug/commandLine.jsの630行目あたりを this.$$ = function…
function Class() function () { if (typeof this.initalize == "function") return this.initalize.apply(this, arguments); } function extend(base, ext) { for (var prop in ext) if (ext.hasOwnProperty(prop)) { var g = ext.__lookupGetter__(prop), …
jkQueryっていう名前に特に意味はない。かなり大げさだけど、書いてみたよってことで。 function jkQuery(selector, context) { if (!(this instanceof jkQuery)) return new jkQuery(selector, context); return jkQuery.prototype.init.apply(this, argume…