You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 18, 2025. It is now read-only.
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!
});