// An event is triggered when a user clicks on the #button element, // which then sets the #button element's background-color to blue. $('#button').on('click', event => { $(event.currentTarget).css('background-color', 'blue'); });