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 7529221
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T04:36:05+00:00 2026-05-30T04:36:05+00:00

If I try something such as this: $(.foo) === $(.foo) // = false …

  • 0

If I try something such as this:

$(".foo") === $(".foo") // = false

… I get false. If I instead try this query,

$(".foo").get(0) === $(".foo").get(0) // = true

… I get true.

That’s because:

{a:myObject} !== {a:myObject};
[myObject]   !== [myObject];
myObject     === myObject;

I’m wondering if there is any succinct way to test for this equality, preferably built into jQuery. The 2nd method I wrote only works correctly if there is at most one element which matches .foo. The solution should work for any amount of elements.

Obviously I don’t want to just check ".foo" === ".foo" since the actual selections I’m using are more complicated. I just simplified them for this example. (E.g. I may want to check that $(this) is selecting the same thing as $(".foo").)

  • 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-30T04:36:07+00:00Added an answer on May 30, 2026 at 4:36 am

    There is nothing in the core library to check sequence equality of jQuery objects, however the following should do the trick:

    $.fn.sequenceEqual = function(compareTo) {
      if (!compareTo || !compareTo.length || this.length !== compareTo.length) {
        return false;
      }
      for (var i = 0, length = this.length; i < length; i++) {
        if (this[i] !== compareTo[i]) {
          return false;
        }
      }
      return true;
    } 
    

    Which would be useable like so:

    $(".foo").sequenceEqual($(".bar"))
    

    For completeness, a contents equal method could be written like so:

    $.fn.contentsEqual = function(compareTo) {
      return compareTo && this.length === compareTo.length && this.length === this.filter(compareTo).length;
    }
    

    Which would be useable like so:

    $(".foo").contentsEqual($(".bar"))
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Using something like this: try: # Something... except Exception as excep: logger = logging.getLogger(component)
I would try something like this but it isn't allowed. function GetDynamicModulesProperties() { var
I want to do something like this... try { # Something in this function
When I try and save something to my list in SharePoint I get the
For example, I try to do something like this: - (BOOL)compare:(NSDecimal)leftOperand greaterThan:(NSDecimal)rightOperand { BOOL
what is a best practice in cases such as this one: try { //
I'm not sure if this is a proper programming question, but it's something that
If I try something such as: int anint; char achar; printf(\nEnter any integer:); scanf(%d,
I'm pretty proficient in PHP, but want to try something new. I'm also know
If I want to try out something new in Ruby or Javascript, I love

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.