Is this:
var contents = document.getElementById('contents');
The same as this:
var contents = $('#contents');
Given that jQuery is loaded?
|
Is this:
The same as this:
Given that jQuery is loaded? |
||||
|
|
|
Not exactly!!
In jQuery, to get the same result as
|
|||||||||||||||
|
|
No. Calling Calling Thus, you can only call jQuery methods like You can also write You can get the underlying DOM object from a jQuery object by writing |
|||||
|
|
No. The first returns a DOM element, or null, whereas the second always returns a jQuery object. The jQuery object will be empty if no element with the id of The DOM element returned by
Is more equivilent, however if no element with the id of One benefit on using the jQuery object is that you won't get any errors if no elements were returned, as an object is always returned. However you will get errors if you try to perform operations on the |
|||
|
|
|
Close, but not the same. They're getting the same element, but the jQuery version is wrapped in a jQuery object. The equivalent would be this
or this
These will pull the element out of the jQuery object. |
|||
|
|
|
No, actually the same result would be:
jQuery does not know how many results would be returned from the query. What you get back is a special jQuery object which is a collection of all the controls that matched the query. Part of what makes jQuery so convenient is that MOST methods called on this object that look like they are meant for one control, are actually in a loop called on all the members int he collection When you use the [0] syntax you take the first element from the inner collection. At this point you get a DOM object |
||||
|
|
|
In case someone else hits this... Here's another difference: If the id contains characters that are not supported by the HTML standard (see SO question here) than jQuery may not find it even if getElementById does. This happened to me with an id containing "/" characters (ex: id="a/b/c"), using Chrome:
was able to find my element but:
did not. Btw, the simple fix was to move that id to the name field. JQuery had no trouble finding the element using:
|
|||
|
|
|
Just like most people have said, the main difference is the fact that it is wrapped in a jQuery object with the jQuery call vs the raw DOM object using straight JavaScript. The jQuery object will be able to do other jQuery functions with it of course but, if you just need to do simple DOM manipulation like basic styling or basic event handling, the straight JavaScript method is always a tad bit faster than jQuery since you don't have to load in an external library of code built on JavaScript. It saves an extra step. |
||||
|
|