vote up 0 vote down star

I'm having an impossibly hard time finding out to get the actual DOMElement from a jquery selector. Sample Code:

var checkbox = $("#bob").click(function() { //some code } )

and in another piece of code I'm trying to determine the checked value of the checkbox.

if ( checkbox.eq(0).SomeMethodToGetARealDomElement().checked ) //do something.

And please, I do not want to do:

if ( checkbox.eq(0).is(":checked")) //do something

That get's me around the checkbox, but other times I've needed the real DOMElement.

flag

50% accept rate

4 Answers

vote up 3 vote down check

You can access the raw DOM element with:

$("table").get(0);

or more simply:

$("table")[0];

There isn't actually a lot you need this for however (in my experience). Take your checkbox example:

$(":checkbox").click(function() {
  if ($(this).is(":checked")) {
    // do stuff
  }
});

is more "jquery'ish" and (imho) more concise. What if you wanted to number them?

$(":checkbox").each(function(n, i) {
  $(n).data("index", i);
});
$(":checkbox").click(function() {
  if ($(this).is(":checked") && $(this).data("index") == 0) {
    // do stuff
  }
});

Some of these features also help mask differences in browsers too. Some attributes can be different. The classic example is AJAX calls. To do this properly in raw Javascript has about 7 fallback cases for XmlHttpRequest.

link|flag
Thanks, but the get method still returns a jquery element, not the dom element. Otherwise the .checked property call would have worked. – BillRob Nov 5 at 2:15
Try $('a').get(0).nodeType==1 in Firebug on this page, does it evaluate to true or fail? – meder Nov 5 at 2:20
@BillRob if get() isn't returning the DOM element, something is wrong. See the docs here: docs.jquery.com/Core/get#index – Sixten Otto Nov 5 at 2:27
$('<input type=checkbox>').appendTo('body').get(0).checked – meder Nov 5 at 2:29
Thanks Steve, cletus, the jquery documentation is very confusion around the .get operator. I found an article that mentioned it was deprecated and don't get confused with the jQuery.get() ajax method. The core issue is I have many years of javascript libraries I've built up and I can't rewrite all of them instantly, so they get converted as time permits. – BillRob Nov 5 at 2:39
show 4 more comments
vote up 0 vote down

If you need to interact directly with the DOM element, why not just use document.getElementById since, if you are trying to interact with a specific element you will probably know the id, as assuming that the classname is on only one element or some other option tends to be risky.

But, I tend to agree with the others, that in most cases you should learn to do what you need using what jQuery gives you, as it is very flexible.

UPDATE: Based on a comment: Here is a post with a nice explanation: http://www.mail-archive.com/jquery-en@googlegroups.com/msg04461.html

$(this).attr("checked") ? $(this).val() : 0

This will return the value if it's checked, or 0 if it's not.

$(this).val() is just reaching into the dom and getting the attribute "value" of the element, whether or not it's checked.

link|flag
1  
I could use document.getElementById or the MS ajax $get method. Since MS endorsed jquery I'm trying to break my reliance on ms ajax javascript and learn jquery. It seems entirely counter-intuitive that jquery would change the behavior of the checkbox .val() method. As every other .val() call returns the form post fields. jQuery has been so good to work with so it was confusing to change the val() method and was hoping to find a quick workaround. – BillRob Nov 5 at 2:19
1  
So check out this page: mail-archive.com/jquery-en@googlegroups.com/… – James Black Nov 5 at 2:21
1  
That's odd James that the val() method is really .attr("value"). I wonder why they have two different methods for it. To me .val() is the value of the form post field. – BillRob Nov 5 at 2:41
1  
@BillRob - jQuery is just simplifying, and standardizing, how to get the value, rather than you having to go to the actual element and do it yourself. – James Black Nov 5 at 2:44
vote up 0 vote down

Edit: seems I was wrong in assuming you could not get the element. As others have posted here, you can get it with:

$('#element').get(0);

I have verified this actually returns the DOM element that was matched.

link|flag
vote up -2 vote down

That would be silly and defeat the purpose of using jQuery, but .get(0) or [0] would grab the first object in the collection if the .length is > 0.

$('a').get(0)

I suggest familiarizing yourself to a point where you don't actually need to manually invoke DOM methods unless you had no other choice to.

link|flag
1  
What a great non answer. I appreciate you taking the time to point out silliness and added condescension. I will reciprocate for you and give you the same treatment. I suggest you familiarize your self with jquery as well. The .get has been deprecated because of confusion with the ajax method. The .eq method is what you should use. Any case I've needed the dom element had nothing do with invoking DOM methods, including the sample. Just accessing properties. Although I wish the table manipulation support in jquery was better. – BillRob Nov 5 at 2:14
.eq returns the jqueryized object in the array. – meder Nov 5 at 2:23
$('a').eq(0).jquery === '1.3.2' try this on this page. – meder Nov 5 at 2:24
Where'd you hear about the deprecation of it? – meder Nov 5 at 2:35
@BillRob who says that get() has been deprecated? – Sixten Otto Nov 5 at 2:42
show 4 more comments

Your Answer

Get an OpenID
or

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