1. show()
  2. css()
  3. click()
  4. done()
4 views

1 Answers

Answer: Option 2

The css() method operates on the jQuery object returned by $(), and returns that same object, so that the show() method can be invoked next in a compact “method chain.”

4 views

Related Questions