Home > Internet Programming > Quizzes > jQuery Fundamentals Test
jQuery Fundamentals Test
Fast practice, instant feedback. Timer auto-submits when time’s up.
Avg score: 20% Most missed: “What is '$();' equivalent to?”
jQuery Fundamentals Test
Time left 00:00
25 Questions

1. Which jQuery function is used to prevent code from running - before the document is finished loading?
2. What is the proper way to show an element?
3. Which selector matches all elements?
4. Which method is used to bind an event handler to existing and future matching elements?
5. Which of these is NOT a pseudoclass?
6. Attribute Contains Prefix Selector is:
7. What method returns control of the $ identifier to other libraries?
8. Which of the following selectors is the fastest?
9. True or False :jQuery method dequeue() used while creating animation effects removes all remaining queued functions from the selected elements
10. Is this a valid statement in jQuery? $('#foo').hide().show().css('color' - 'red').fadeOut();
11. What does jQuery do?
12. The 'hide()' function set which of the following properties?
13. What does this do? $('p').find('span').end().css('border' - '2px red solid');
14. To dynamically set the src attribute of all img elements use:
15. Which of the following is a valid jQuery multiple class selector?
16. Which of the following statement best described the following code snippet: $('#myID').animate({width:'90%'} - 'fast');
17. What is the name of a function that intercepts combinations of user actions?
18. var result = $('#div').css('color' - 'red') What does the 'result' var contain?
19. Which of the following syntaxes are equivalent to $(document).ready(handler)?
20. Which function does jQuery provide to remove whitespace from the beginning and end of a string?
21. How can you get the number of paragraphs in the html document using jQuery?
22. What is an event handler?
23. Which function locates elements at the same level as the current selection?
24. How do you schedule a Javascript function to execute as soon as the document has been interpreted by the browser?
25. What is the difference between searching 'find()' and 'children()'