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

  • Home
  • SEARCH
  • 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 7510017
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T23:06:12+00:00 2026-05-29T23:06:12+00:00

Does creating and reusing a reference increase performance appreciably when the selector is $(this)

  • 0

Does creating and reusing a reference increase performance appreciably when the selector is $(this)?

I create references for my jQuery selectors when I use the same selector multiple times in the same scope. The following is more efficient

    var jSel = $('div.some_class input.some_other_class');
    some_function1(jSel);
    some_function2(jSel);

than this

    some_function1($('div.some_class input.some_other_class'));
    some_function2($('div.some_class input.some_other_class'));

But what if the selector is simply $(this) where this is a dom element inside a jQuery method. Should I bother to create a reference to $(this) and reuse the reference or can I create multiple $(this) selectors and expect similar performance?

Is the following

    var jSel = $(this);
    some_function1(jSel);
    some_function2(jSel);

significantly faster than the following?

    some_function1($(this));
    some_function2($(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-29T23:06:13+00:00Added an answer on May 29, 2026 at 11:06 pm

    Is the following significantly faster than the following?

    No. It is microscopically faster; in the realms of just a few microseconds.

    Does that stop you assigning the result to a variable and using that? No. Using a variable can give more meaning to what this is, and can be easier to type. Plus, if you stopped wanting to operate on $(this), and instead wanted $(this).next(), you have to change it in one place instead of n.

    You’ll find the jQuery constructor is highly optimized for accepting a single DOM element as a parameter. The following is the exact code that gets executed when you call $(DOMElement) (after the jQuery object has been created, of course):

    var match, elem, ret, doc;
    
    // Handle $(""), $(null), or $(undefined)
    if ( !selector ) {
        return this;
    }
    
    // Handle $(DOMElement)
    if ( selector.nodeType ) {
         this.context = this[0] = selector;
        this.length = 1;
        return this;
    }
    
    // Handle lots of other param types, but we hit the above one, so we've stopped now...
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Please, look into this code. Why does creating of the same regular expression by
Firefox 3.5 does not allow creating java OBJECT tag with Javascript (document.write)? this technique
Does anybody know of a method for creating custom Performance Counters using ordinary unmanaged
Why does this attempt at creating a list of curried functions not work? def
Does creating a lot of private variables that may never be used increase file
Does creating an object using reflection rather than calling the class constructor result in
If I was a webservice, such as Twitter, how does creating an API for
Does anyone have any good suggestions for creating a Pipe object in Java which
Does anyone have a suggestion for creating paragraph-type line spaces within a <li> tag
Does anyone have any suggestions for creating meta tables in a database? These tables

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.