1. How is jQuery licensed?
2. $() is an alias of the jQuery() function
3. What language is jQuery written in?
4. Is it possible to use jQuery together with AJAX?
5. jQuery.trim() function is used to ?
6. How do you fetch the first span on the page which has the class 'white'?
7. Which is a state selector?
8. $.foo() is equivalent to:
9. What method is the primary means of attaching a handler to an event?
10. What does $('div.intro') select?
11. Which code is an example of ______: $('.tooltip').hide().fadeIn(9000).delay(1000).fade0ut(9000);
12. What does the code do: $('#myDiv').trigger('click');
13. What is $(fn); a shortcut for?
14. The jQuery html() method works for both HTML and XML documents
15. Which functions can be used to stop event propagation?
16. Assume that you want that first the tag with 'id1' fades out and then the tag with 'id2' fades in. Which of the following code snippets allow(s) you to do so?
17. $('div').find('p').andSelf().addClass('border'); The statement adds class border to ___.
18. Which returns the children tags of 'id1'?
19. Which jQuery function is used to prevent code from running, before the document is finished loading?
20. Which sign does jQuery use as a shortcut for jQuery?
21. To create your own jQuery Plugin which is correct?
22. What is the correct way of using a jQuery plugin?
23. Which jQuery function can be used to filter out elements from a set of matched elements?
24. Which choice is an example of statement chaining?
JQuery MCQs | Topic-wise