Answer & Solution
$('input').blur(function() {...});
<input>
elements using jQuery?
$('input').blur(function() {...});
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 bind a mouseover event handler to all<div>
elements using jQuery?
A). $('div').on('mouseover', function() {...});
B). $('div').addEventListener('mouseover', function() {...});
C). $('div').bind('mouseover', function() {...});
D). $('div').mouseover(function() {...});
How to bind a click event handler to all<code><button>
elements using jQuery?
A). $('button').click(function() {...});
B). $('button').addEventListener('click', function() {...});
C). $('button').bind('click', function() {...});
D). $('button').on('click', function() {...});
How to bind a focus event handler to all<input>
elements using jQuery?
A). $('input').on('focus', function() {...});
B). $('input').addEventListener('focus', function() {...});
C). $('input').bind('focus', function() {...});
D). $('input').focus(function() {...});
Which jQuery method is used to bind event handlers to elements with a specific CSS class?
A). $('.class').on();
B). $('.class').attach();
C). $('.class').bind();
D). $('.class').delegate();
How to bind a keydown event handler to the document using jQuery?
A). $(document).keydown(function(event) {...});
B). document.addEventListener('keydown', function(event) {...});
C). $('document').on('keydown', function(event) {...});
D). $('document').keydown(function(event) {...});
Which jQuery method is used to bind event handlers for future elements?
A). $('element').live();
B). $('element').attach();
C). $('element').on();
D). $('element').delegate();
Which jQuery method is used to bind event handlers to elements that match a selector, now and in the future?
A). $(document).delegate(selector, eventType, function() {...});
B). $(document).live(selector, eventType, function() {...});
C). $(document).on(eventType, selector, function() {...});
D). $(document).bind(eventType, selector, function() {...});
How to bind a submit event handler to all<form>
elements using jQuery?
A). $('form').on('submit', function() {...});
B). $('form').addEventListener('submit', function() {...});
C). $('form').bind('submit', function() {...});
D). $('form').submit(function() {...});
Which jQuery method is used to bind event handlers to elements that match a selector, now and in the future?
A). $(document).on(eventType, selector, function() {...});
B). $(document).bind(eventType, selector, function() {...});
C). $(document).delegate(selector, eventType, function() {...});
D). $(document).live(selector, eventType, function() {...});