I've problem with showing hidden blocks, if they are css: inline-block.
div.profile{
display: inline-block;
}
<div class='profile' style='display: none;'>profile info</div>
But when i do $('.profile').show() it becomes style='display: block' (i can see it in firebug) and overrites my css style...
How can i fix this?
btw, in jquery 1.4 it works correctly.
Thanks.
UPD
$.css('display', 'inline-block'), imo, is not universal solution.