Test your basic knowledge |

Jquery Commands

Subject : it-skills
Instructions:
  • Answer 50 questions in 15 minutes.
  • If you are not ready to take this test, you can study here.
  • Match each statement with the correct term.
  • Don't refresh. All questions and answers are randomly picked and ordered every time you load a test.

This is a study tool. The 3 wrong answers for each question are randomly chosen from answers to other questions. So, you might find at times the answers obvious, but you will see it re-enforces your understanding as you take the test each time.
1. jQuery motto: _____. Do More.






2. Two versions of jQuery available for download: production & ________






3. The _____ method changes the height property of an element until it is zero and then hides the element.






4. Select an item using id

































































5. HTML tag pair that delimits a jQuery code block






6. Allows you to select a grouping of elements






7. A CSS setting that makes sure an element won't show when the page loads: display:______;






8. Use a _____ to test that your jQuery scripts are working.






9. Basic jQuery syntax (using shortcut)






10. Enable an element






11. jQuery selects elements the same way ____ does






12. 3 types of things that can go into the jQuery function: $( ) - CSS Selector - ________ - and JavaScript object






13. The _____ method changes the height property of an element from zero to whatever it's set to in the CSS style.






14. The process of adding or 'gluing' various kinds of data together often in a message






15. Test whether an element exists

































































16. jQuery is written in _____________






17. Re-write the following command with the jQuery shortcut: jQuery("h1").hide();






18. Show item if it exists but do nothing (no errors)

































































19. jQuery command to take an image with an id of 'dog' and fade it from transparent to opaque in 3 seconds.






20. You know you are dealing with a _____ when you see a set of parenthesis after a keyword






21. This is the jQuery object. $ ("document").ready(function () { Your Code }); This is where all of jQuery's functionality is accessed from.






22. Root of an html document






23. A ______ is used by jQuery to locate and return an element from the web page






24. Another word for visible






25. Syntax for a common jQuery code block that's intended to run when a web page is fully loaded






26. The original creator of the jQuery library






27. JavaScript library specialized for complex interactivity and rich visual effects






28. Set the value of an element

































































29. Uncheck an input






30. Unit of time measure in jQuery commands requiring a time value






31. Number of milliseconds in a second






32. Concatenation symbol in JavaScript






33. The ______ is the main window of the browser.






34. Name of the symbol used for the jQuery shortcut






35. Determine the state of a toggled element

































































36. The JavaScript ______ translates directions you give it into different actions on the web page






37. Given: $("div p").hide(); Here the selector is an example of a _________; the parent is on the left and child is on the right






38. Select an item using class


39. Wildcard selector in jQuery (selects all elements)






40. Name of the symbol that ends a jQuery statement






41. Get the text value of a selected option






42. Test whether an element has a particular class






43. Assign a selected element to a javascript variable

































































44. Get the value of an element

































































45. One of jQuery's main strengths is that it allows you to work with the ____ without having to know everything about it.






46. Name of the character used to separate a jQuery selector from a jQuery method






47. Disable an element






48. Another word for invisible






49. Shortcut for typing: jQuery( )






50. URL for obtaining jQuery