Not a question but

I have to say, despite having to copy paste

$(document).ready(function(){
    
});

for no good reason (it’s probably the only piece of JQuery I have memorized so far :P)
I really enjoyed this course. I wish there was more of it.

What’s funny is that just when we get comfortable using the ready() method, we’re shown a simpler way to write a jQuery wrapper:

$(function(){
    
});

Slightly more obscure to understand at first, is jQuery in a self-executing JavaScript closure:

(function($){

})(jQuery);

Remember to browse and familiarize yourself with the jQuery documentation as well as jQuery UI. And of course, keep up your study of JavaScript and all things browser related (HTML, CSS). The fun really gets going when we have a firm grasp on all of these.

definitely, it’s all jumbled up now, I will have to go trough documentation as well, thanks ><