js $('button').on('click', function () { alert('you clicked the button!'); }); $('button').click(function () { alert('you clicked the button!'); });
1.
Only the second one will work; jQuery does not have a function called `.on`.
2.
The second snippet will not function.
3.
Nothing `.click(function)` is shorter way to write `.on('click', function)`.
4.
The first snippet will execute for every button on the page, the second will only apply to the first button.
Q 1 / 67
Press C to Clear
Press R to Reset
Press N or Enter to Next or Check answer
Press 1,2,3, ... to toggle answers