diff --git a/page/about-jquery/how-jquery-works.md b/page/about-jquery/how-jquery-works.md index 425ff563..33cfb0cb 100644 --- a/page/about-jquery/how-jquery-works.md +++ b/page/about-jquery/how-jquery-works.md @@ -53,6 +53,8 @@ $( document ).ready(function() { }); ``` +
**Note**: The jQuery library exposes its methods and properties via two properties of the window object called jQuery and $. $ is simply an alias for jQuery and it's often employed because it's shorter and faster to write.
+ For example, inside the `ready` event, you can add a click handler to the link: ```