Section 2 - Events
$(document).ready(function(){
alert('document is ready');
}) $(document).ready(function(){
$('p').click(function() {
$('p').css('color', 'red');
})
})
// clicking on any paragraph makes it redLast updated