jQuery Plugins/Addons
Currently there isn't much here
$.log
Logging to native / loaded javascript console via jQuery: jquery-loganddebug.patch
ieFixLayout
A JQuery plugin that will fix min-width, position absolute problems in IE 5 5.5 and 6 in the future.
The test sample with unfinished and buggy code:
transfunc
transfunc - rewrite a function code on the fly... (means better compression for big functions)
jQuery.transfunc = function(oldfunc, newfunc, regs) { var str = String(oldfunc); for( var i = 0; i < regs.length; i+=2 ) { str = str.replace(regs[i], regs[i+1]); } str = newfunc+'='+str; eval(str); };
Sample:
jQuery.transfunc(jQuery.functop, 'jQuery.funcleft', [/Height/, 'Width']);