/ Published in: jQuery
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
jQuery.fn.forceShow = function() { if (this.css('opacity') < 0.25) { this.css('opacity',1) } return this.show().css('visibility','visible') }