Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

1
  • I think I might add the following for posterity. (a) In modern JavaScript, a better comparison would be between document.querySelectorAll('td') and $('td'). (b) The fundamental difference is that jQuery works with its own type of object which contains, among other things, a numbered collection of HTML elements; this collection is none of the above, and the jQuery object is essentially a wrapper around the true DOM elements.
    – Manngo
    Commented Nov 21, 2017 at 7:11