When appending the .css() function in jQuery 1.4.4 will the .css() override each of the preceding css, or will it append it?
e.g.
$('.GhostIcon').css('opacity', '0.25').css('filter', 'alpha(opacity=25)').css('-khtml-opacity', '0.25').css('-moz-opacity', '0.25');
And secondly, does this have the same behaviour?
$('.GhostIcon').css('opacity', '0.25');
$('.GhostIcon').css('filter', 'alpha(opacity=25)');
$('.GhostIcon').css('-khtml-opacity', '0.25');
$('.GhostIcon').css('-moz-opacity', '0.25');
$('.GhostIcon').css({'opacity':'0.25', 'filter':'alpha(opacity=25)',...});