Closed
Description
Visiting jquery.com I followed the links that I thought would give me an introduction to JQuery. These are the links I followed, in order:
- https://jquery.com/
- https://learn.jquery.com/about-jquery/how-jquery-works/
- https://learn.jquery.com/about-jquery/additional-support/
- https://learn.jquery.com/using-jquery-core/
- https://learn.jquery.com/using-jquery-core/dollar-object-vs-function/
How JQuery Works showed how to include jquery.js
into your HTML file. OK, good setup. The subsequent links were visited by clicking the "next" links at the bottom each page. Then we get to the page dollar-object-vs-function
. The first sentence of this page is:
Until now, we've been dealing entirely with methods that are called on a jQuery object. For example:
$( "h1" ).remove();
"Until now" I have not dealt with with any JavaScript code, let alone "methods that are called on a jQuery object". This first page of tutorial content seems like it should be something like the 20th.