Is the the jQuery('#selector').css({'opacity':50});
cross browser?
The only reason i ask is because the line below that we'd normally use on css
-moz-opacity:.50; filter:alpha(opacity=50); opacity:.50;
this is probably better:
$(element).fadeTo(0, 0.5);