Work with legacy and simple sites using jQuery selectors, events, AJAX, effects, and plugins.
Lessons
Chain multiple jQuery calls for concise code.
Method Chaining is easiest to learn by reading the example, changing it, and observing the result.
// $(selector).action() - the core jQuery pattern
$('#box') // 1. select
.addClass('active') // 2. chain actions
.css('color', 'white')
.fadeIn(300)
.text('Ready');Practice the Method Chaining example in a small scratch file, then explain what changed and why.