I\'m trying to animate the font size of some text:
$(\"p\").delay(500).animate({ \"font-size\": \"+=50\" }, 1000, function() { alert(\"Done\"); });
Give the P-tag in question an ID and select that ID rather than every P tag on the page. Like here: http://jsfiddle.net/LR8uP/1/
Or if you want to animate every P-tag but run the function only once, add a state variable, like here: http://jsfiddle.net/LR8uP/2/