InterviewSolution
Saved Bookmarks
| 1. |
Which of the following is the Web application equivalent to querySelectorAll()?(a) #()(b) &()(c) $()(d) !() |
|
Answer» The correct option is (c) $() Easiest explanation: Web applications based on jQuery use a portable, cross-browser equivalent to querySelectorAll() named $(). |
|