Work with legacy and simple sites using jQuery selectors, events, AJAX, effects, and plugins.
Lessons
Read target, type, and coordinates from the event.
The Event Object is easiest to learn by reading the example, changing it, and observing the result.
$(document).on('click', function (event) {
console.log('Type:', event.type);
console.log('Target:', event.target);
console.log('Position:', event.pageX, event.pageY);
});Practice the The Event Object example in a small scratch file, then explain what changed and why.