In jQuery, are multiword css fields condensed to camelCaps? For instance.
$("#item").css("marginBottom");
not
$("#item").css("margin-bottom");
On my machine running Firefox 3.6.6 with jQuery JavaScript Library v1.4.2, the answer seems to be no. doing $("#item").css("marginBottom");
gives me a warning about invalid css field and that the declaration was dropped.