Work with legacy and simple sites using jQuery selectors, events, AJAX, effects, and plugins.
Lessons
Build or initialize a simple image carousel.
Image Sliders is easiest to learn by reading the example, changing it, and observing the result.
$('#menu-toggle').on('click', function () {
$('#menu').slideToggle(300);
});
$('#open').on('click', () => $('#panel').slideDown());
$('#close').on('click', () => $('#panel').slideUp());Practice the Image Sliders example in a small scratch file, then explain what changed and why.