up vote 2 down vote favorite
share [g+] share [fb]

I am trying to understand why you would use jQuery.get() and jQuery.get(index). The docs say it is to convert the jQuery selection to the raw DOM object instead of working with the selection as a jQuery object and the methods available to it.

So a quick example:

$("div").get(0).innerHTML;

is the same as:

$("div").html();

Obviously this is a bad example but I am struggling to figure when you would use .get(). Can you help me understand when I would use this method in my code?

link|improve this question

feedback

7 Answers

It happens often when you want to call a native JS method on an element.

//submitting a form...
$('#mySearchForm').get().submit();
link|improve this answer
You could also force click the submit button $("input#submit").click(); to do the same. – RedWolves Apr 19 '09 at 17:05
Hmm...I was having a brain fart this morning too. There is also a jQuery method that will trigger a submit. $('#mySearchForm').submit(); will also work. I don't consider your answer a practacle use of get(). – RedWolves Apr 19 '09 at 23:18
feedback

Sometimes you're using jQuery in noConflict mode and you want to do something like:

var element = jQuery('#jquery_selectors .are > .awesome[and=fast]').get(0);

And then do something in prototype:

$(element).whatever();
link|improve this answer
1  
I think this is the best practical use case so far. I am still hoping for a use case that isn't dependent on another library. – RedWolves Apr 19 '09 at 23:23
I think you'll find that get is just there for completeness sake. Eg, you can turn a DOM element into a jQuery object with el = $(document.getElementById('something')) therefore you should be able to turn a jQuery object into a DOM element with el.get(). – rfunduk Apr 20 '09 at 17:39
feedback

This may come in handy when doing something like (psuedocode):

a = $("div").get()
ajaxsend(a)

There are times when you may need to pass the actual DOM object to other functions, which may not be able to handle the jQuery object.

link|improve this answer
feedback

This is useful for accessing any JavaScript method that isn't exposed through jQuery. For example, before jQuery supported offset(), I would typically use get() like this:

var offTop = $(element).get(0).offsetTop;

For another example, I used this recently to determine the scrollHeight of an element.

var scrollHeight = $(element).get(0).scrollHeight;

This can also be written as:

var scrollHeight = $(element)[0].scrollHeight;
link|improve this answer
This is great, is there a list of DOM properties/methods that aren't yet supported in jQuery that might be of use with the get() method? That would be good to know. – RedWolves Apr 20 '09 at 14:39
I asked a follow question and now I am not so sure your answer is so practical stackoverflow.com/questions/770475/… – RedWolves Apr 21 '09 at 1:45
feedback
up vote 1 down vote accepted

Cody Lindley (jQuery Team Member) has a great example of why you would use get()

If you ever need to cache a set of elements, because you are about to remove them, the jQuery get() method is really handy. For example, in the code below I am saving all my <li> elements on the page in an array, removing them, and then adding them back into the page using this array. Make sense?

<html> 
<head> 
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></script> 
</head>

<body>

<ul> 
    <li>test</li> 
    <li>test</li> 
    <li>test</li> 
    <li>test</li> 
    <li>test</li> 
    <li>test</li> 
    <li>test</li> 
    <li>test</li> 
 </ul>

<script>

var test = $('ul li').get();

$('ul').empty();

$.each(test, function(){ $('ul').append('<li>'+$(this).html() + ' new</li>'); });

</script> 
</body> 
</html>
link|improve this answer
feedback

Another possible use of get() is when you are working with XML trees in jQuery.

link|improve this answer
Can you provide a simple code example? – RedWolves Apr 19 '09 at 17:14
Just something silly like: var xml = $('<dc xmlns="#"><title>Title</title></xml>'); var title = $('title', xml).get(0); I don't have any practical uses for it, but I can imagine more circumstances where you want the underlying DOM outside of HTML-land (say, tossing the tree into an XPath matcher or something...) – cbeer Apr 19 '09 at 20:04
feedback

I use it to get id for single element

 $(selector).get(0).id
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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