In jQuery, fontSize and font-size are both valid in the css() function, but in animate(), it has to be fontSize?

StackOverflow https://stackoverflow.com/questions/3122918

  •  30-09-2019
  •  | 
  •  

Question

In jQuery, fontSize and font-size are both valid in the css() function, but in animate(), it has to be fontSize?

Are there more rules for other functions?

so the safest is still the form fontSize

Update: our project uses jQuery 1.3.1, and it will not work... but I just checked that 1.4.2 will work with "font-size" even for animate.

Was it helpful?

Solution

from the .animate() API page:

The .animate() method allows us to create animation effects on any numeric CSS property. The only required parameter is a map of CSS properties. This map is similar to the one that can be sent to the .css() method, except that the range of properties is more restrictive.

OTHER TIPS

in css() function if the property have "-" (such as font-size) you must use " " wrap it

$("p").css({ color: "#ff0011", background: "blue" }); 

$("p").css({ "margin-left": "10px", "background-color": "blue" }); 

in animate() function if the property have "-" you must use CamelCase

e.g. marginLeft replace margin-left

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top