Let's fire a statement, only once the Document is ready!
We're completing these tasks in Submlime and the console.
The document ready function that you will add:
$( document ).ready(function() { // statement here });
// statement here
comment, add a console log statement that returns Ready!
.
console.log('Ready!');
Ready!
after the document has finished loading.