You want to take a block of type and animate it to a larger size with jQuery. The following HTML and JavaScript behaves strangely. What is the issue?html Animate me!js$('#type').animate( { fontSize: '+=1em', }, 3000,);

🎲 Try a Random Question  |  Total Questions in Quiz: 75  |  🧠 Study this quiz with Flashcards
This question is part of a full practice quiz:
jQuery Quiz — practice the complete quiz, review flashcards, or try a random question.

jQuery MCQs For LinkedIn Skill Assessments.


You want to take a block of type and animate it to a larger size with jQuery. The following HTML and JavaScript behaves strangely. What is the issue?<br>html<br><div id='type' style='font: 1em/1.5 helvetica, arial, sans-serif; background: #ffc; padding: 0'><br> Animate me!<br></div><br><br>js<br>$('#type').animate(<br> {<br> fontSize: '+=1em',<br> },<br> 3000,<br>);<br>