I have a problem with the jquery show function in firefox.
Situation: I have loaded a iframe with an aspx page in a popup (fancybox). In that aspx page I have a button
I had a similar problem. I did set this in my css:
body { display: none }
and tried to change this in jQuery:
$("body").show();
which did not work in Firefox.
After I changed the HTML to
and removing the part from CSS I was able to use jQuery show(); flawless
It seems that the inheritance of css rules does not follow the same routine in Firefox as in IE / Chrome.