Fixed an edge case in show() where the css says the display should be none. In that...
[jquery.git] / src / fx.js
index b4606a8..64cfbc6 100644 (file)
--- a/src/fx.js
+++ b/src/fx.js
@@ -10,6 +10,9 @@ jQuery.fn.extend({
                                if ( jQuery.css(this,"display") == "none" ) {
                                        var elem = jQuery("<" + this.tagName + " />").appendTo("body");
                                        this.style.display = elem.css("display");
+                                       // handle an edge condition where css is - div { display:none; } or similar
+                                       if (this.style.display == "none")
+                                               this.style.display = "block";
                                        elem.remove();
                                }
                        }).end();