Work with legacy and simple sites using jQuery selectors, events, AJAX, effects, and plugins.
Lessons
Inject server HTML into part of the page.
load() for HTML Fragments is easiest to learn by reading the example, changing it, and observing the result.
// Inject a server HTML fragment into part of the page
$('#panel').load('/partials/sidebar.html');
// Load only a section from the response
$('#news').load('/news.html #latest');Practice the load() for HTML Fragments example in a small scratch file, then explain what changed and why.