Multiple choice technology architecture

Features of JQuery used in developing AJAX Application?

  1. CSS manipulation.

  2. DOM Traversal and modification.

  3. Both a and b

  4. None of the above.

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

jQuery offers both CSS manipulation functions (like css(), addClass(), toggleClass()) and DOM traversal/modification capabilities (methods like find(), parent(), after(), html()). Both are commonly used in AJAX applications to update page content dynamically based on server responses.