Skip to content

Instantly share code, notes, and snippets.

@afahy
Created October 22, 2009 19:26
Show Gist options
  • Save afahy/216209 to your computer and use it in GitHub Desktop.
Save afahy/216209 to your computer and use it in GitHub Desktop.
Opacity shortcut
(function($){
// silly shortcut to get/set opacity
$.extend($.fn, {
opacity: function(n){
return n ? this.css("opacity",n) : this.css("opacity");
}
});
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment