This repository was archived by the owner on Aug 18, 2025. It is now read-only.

Description
Hi, there is a typo in step 6 of the Night and Day tutorial at the end of step 6. The anonymous function in the click event handler is not properly closed.
$(document).ready( function() {
$('button').click( function() {
$('body').addClass('black');
}); // missing } was at beginning of this line!
});