Answer & Solution
$('.imgClass').mouseleave(function() {...});
$('.imgClass').mouseleave(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 capture the x and y coordinates of the mouse pointer when it moves over a div element using jQuery?
A). var x = event.clientX; var y = event.clientY;
B). var x = event.pageX; var y = event.pageY;
C). var x = event.offsetX; var y = event.offsetY;
D). var x = event.screenX; var y = event.screenY;
What jQuery method is used to bind event handlers to elements based on their data attributes?
A). $('.element').on('data');
B). $('.element').bind('data');
C). $('.element').delegate('data');
D). $('.element').live('data');
Which jQuery method is used to bind event handlers to elements that are currently matching a selector?
A). $(selector).on();
B). $(selector).bind();
C). $(selector).live();
D). $(selector).delegate();
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;
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() {...});
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 elements for specific keys on the keyboard?
A). $('#element').keydown();
B). $('#element').keypress();
C). $('#element').keyup();
D). $('#element').on('key', function() {...});
How to bind a mousemove event handler to the window using jQuery?
A). $(window).mousemove(function() {...});
B). $(window).addEventListener('mousemove', function() {...});
C). $('window').bind('mousemove', function() {...});
D). $(window).on('mousemove', function() {...});
What jQuery method is used to bind event handlers to elements with specific CSS classes?
A). $('.className').on();
B). $('.className').attach();
C). $('.className').bind();
D). $('.className').delegate();