Skip to content

Instantly share code, notes, and snippets.

View rdela's full-sized avatar
🐞
Various bug fixes and improvements

Ricky de Laveaga rdela

🐞
Various bug fixes and improvements
View GitHub Profile
@rdela
rdela / mikeHide.js
Created August 2, 2011 23:03
mikeHide by SlexAxton, "show() and hide() for visibility (not display)" - mahemoff
// https://twitter.com/#!/slexaxton/status/98504141877411842
$.fn.mikeHide = function (t,cb) {
return this.animate({
opacity:0
},'swing',t,cb);
};