vote up 4 vote down star

I'm struggling to find the right terminology here, but if you have jQuery object...

$('#MyObject')

...is it possible to extract the base element? Meaning, the equivalent of this:

document.getElementById('MyObject')
flag

4 Answers

vote up 8 vote down check

Take a look at http://docs.jquery.com/Core/get#index

link|flag
vote up 5 vote down
$('#MyObject').get(0);

I think that's what you want. I think you can also reference it like a regular array with:

$('#MyObject')[0];

But I'm not sure if that will always work. Stick with the first syntax.

link|flag
vote up 1 vote down

Isn't the JQuery object just a wrapper around the DOM element? Meaning that $('#MyObject') is the same as document.getElementById('MyObject') but it has some additional functions.

Can you tell us a little more about what you're trying to do?

link|flag
vote up 2 vote down

A jQuery object is a set of elements. In your case, a set of one element. This differs from certain other libraries, which wrap single elements and provide alternate syntax for selectors that return multiple matches.

Aaron W and VolkerK already explained how to access the first (index 0) element in the set.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.