Answer & Solution
$(window).on('mousemove', function() {...});
$(window).on('mousemove', function() {...});
How to capture the keycode of the key pressed by the user in a keypress event handler using jQuery?
A). var keycode = event.key;
B). var keycode = event.which;
C). var keycode = event.keyCode;
D). var keycode = event.keycode;
Which jQuery method is used to bind event handlers for future elements?
A). $('#element').bind();
B). $('#element').live();
C). $('#element').on();
D). $('#element').delegate();
Which jQuery method is used to bind event handlers to elements for specific keys on the keyboard?
A). $('#element').keydown();
B). $('#element').keypress();
C). $('#element').keyup();
D). $('#element').on('key', function() {...});
What jQuery method is used to bind event handlers to elements based on their position within the document?
A). $('#element').hover();
B). $('#element').position();
C). $('#element').scroll();
D). $('#element').offset();
What jQuery method is used to bind a mouseover event handler to a div element with the id 'myDiv'?
A). $('#myDiv').mouseover(function() {...});
B). $('#myDiv').addEventListener('mouseover', function() {...});
C). $('#myDiv').bind('mouseover', function() {...});
D). $('#myDiv').on('mouseover', function() {...});
Which jQuery method is used to bind event handlers to elements that match a selector, now and in the future?
A). $(document).on();
B). $(document).bind();
C). $(document).live();
D). $(document).delegate();
How to bind a keypress event handler to all input elements with the class 'textInput' using jQuery?
A). $('.textInput').on('keypress', function() {...});
B). $('.textInput').addEventListener('keypress', function() {...});
C). $('.textInput').bind('keypress', function() {...});
D). $('.textInput').keypress(function() {...});
Which jQuery method is used to bind event handlers to the document itself?
A). $(document).on();
B). $(document).bind();
C). $(document).delegate();
D). $(document).live();
How to bind a keyup event handler to all input elements with the class 'inputField' using jQuery?
A). $('.inputField').keyup(function() {...});
B). $('.inputField').addEventListener('keyup', function() {...});
C). $('.inputField').bind('keyup', function() {...});
D). $('.inputField').on('keyup', function() {...});
How to bind a mouseout event handler to all images with the class 'imgClass' using jQuery?
A). $('.imgClass').on('mouseout', function() {...});
B). $('.imgClass').mouseout(function() {...});
C). $('.imgClass').bind('mouseout', function() {...});
D). $('.imgClass').mouseleave(function() {...});