vote up 2 vote down star

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?

flag

6 Answers

vote up 1 vote down check

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|flag
vote up 2 vote down

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|flag
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 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 at 1:45
vote up 4 vote down

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|flag
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 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(). – thenduks Apr 20 at 17:39
vote up 0 vote down

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

link|flag
Can you provide a simple code example? – RedWolves Apr 19 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 at 20:04
vote up 4 vote down

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

//submitting a form...
$('#mySearchForm').get().submit();
link|flag
You could also force click the submit button $("input#submit").click(); to do the same. – RedWolves Apr 19 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 at 23:18
vote up 3 vote down

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|flag

Your Answer

Get an OpenID
or

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