Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3304434
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T21:03:41+00:00 2026-05-17T21:03:41+00:00

Does anyone know a good way to cache a collection of objects returned by

  • 0

Does anyone know a good way to cache a collection of objects returned by a selector.

var $platforms = $(".platforms");    
var i = 0, l = $platforms.length, current;

for(;i<l;i++) {
    current = $($platforms[i]); //calling jQuery() in a loop. Should be cached
}

The above code creates a jQuery instance of each element returned by $(".platform") when it should be cached. Is there any easy way to do this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T21:03:42+00:00Added an answer on May 17, 2026 at 9:03 pm

    To literally get an array of jQuery wrappers of elements, you can use .map() like this:

    var $platforms = $(".platforms").map(function() { return $(this); }).get();
    

    Then in your for loop $platforms[i] will be a jQuery object.


    It depends what you’re after though, there’s .each() like this:

    $(".platforms").each(function(i,elem) {
      var current = $(this);
    });
    

    Or use .eq() to get a jQuery wrapped element at that index in your loop, like this:

    for(;i<l;i++) {
      current = $platforms.eq(1);
    }
    

    It all depends on what you’re after….why are you looping through the elements? Most jQuery operations operate on sets, not individual elements, so for example $(".platforms").bind(...) would bind to all of the elements that selector found.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Does anyone know a good safe way to redirect the output of a printf-style
Does anyone know of a good way to calculate the semantic distance between two
Does anyone know of any software or a good way for developers to build
Does anyone know a good way to serialize a System.Windows.Shape (incl. Polygon, Circle, Triangle
Does anyone know a good way to minimize the width of a ToggleButton to
Does anyone know a good way to embed user controls inside an assenbly so
Does anyone know a good way to test if one element, stored in a
Does anyone know a good way to solve this other problem I have. My
Does anyone know good way to profile a sorting algorithm in java(sequential and fork
Does anyone know a good way to fire a callback function on the slideUp

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.