Work with legacy and simple sites using jQuery selectors, events, AJAX, effects, and plugins.
Lessons
Decide where jQuery helps and where it adds weight.
When to Still Use jQuery is easiest to learn by reading the example, changing it, and observing the result.
const lessons = $.get('/api/lessons');
const user = $.get('/api/user');
$.when(lessons, user).done(function (lessonsRes, userRes) {
console.log('Lessons:', lessonsRes[0]);
console.log('User:', userRes[0]);
});Practice the When to Still Use jQuery example in a small scratch file, then explain what changed and why.