Fill in the blank 1 When you use JavaScript code to call a j
Fill in the blank.
1. When you use JavaScript code to call a jQuery method, you code a _____________________ that represents an object, the dot operator, and the method name.
2. When you use JavaScript to code a selector for a jQuery __________________, the $ sign refers to the jQuery library.
3. A jQuery event handler includes the name of an event method, along with the ____________________ that handles the event.
4. A function for the ready event method will run any methods that it contains as soon as the _______________________ is ready.
Solution
in the blank.
1. When you use JavaScript code to call a jQuery method, you code a selectorthat represents an object, the dot operator, and the method .
3.A jQuery event handler includes the name of an event method, along with the an anonymous function that handles the event.
4. A function for the ready event method will run any methods that it contains as soon as the DOM is ready
