learn.jquery.com
learn.jquery.com copied to clipboard
jQuery Learning Center web site content
Hi I've been learning jquery through the "JQuery Core" pages. It's great, but it teaches things in the wrong order. Pages "selecting elements", and "working with selections" should be the...
https://learn.jquery.com/plugins/basic-plugin-creation/ When trying to follow this article, it doesn't seem to have a consistent flow in that it appears to be starting with the basics, adding more information, then "Putting...
`$( window ).load(function () {})` deprecated since v1.8. Should use `$( window ).on("load", function () {})` https://github.com/jquery/jquery/issues/2286
There is an error in line 104. (And also in line 95, but this is less important.) The selector $("p.hidden") would find paragraphs that have a class hidden. But this...
found this in a Google search for "css selector from jquery obj" so update for https://learn.jquery.com/using-jquery-core/faq/how-do-i-select-elements-when-i-already-have-a-dom-element/
> When appending DOM elements to a DocumentFragment, browsers detach them from the page. So, if you access the value of the .length property of a previously stored variable containing...
….11.6 ``` $( window ).load(function() { console.log( "window loaded" ); }); ``` didn't work on Google Chrome 52.0.2743.116 (64-bit) Mac OS X 10.11.6
Fixes #658 Closes #661 Hey guys @AurelioDeRosa @agcolom @gnarf @arthurvr I'd like to continue on from #661 and hopefully get these new pages setup soon - I'll be giving them...