Just want to be sure.
Given the following:
if( ! ( jQuery(slider).css('max-height') == 'none') )
return 200;
else
...carry on...
Can I always assume that if a CSS property is not set in the stylesheet that the .css() method will always return 'none'? It doesn't say so in the jQuery docs but it -seems- like it does. If there's a more standardised way to do this, please let me know. Thanks.