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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T15:28:32+00:00 2026-05-23T15:28:32+00:00

I am having problems showing divs where the div has three selectors I need

  • 0

I am having problems showing divs where the div has three selectors I need to match on. These are typical:

<div class="pinfo draft sept-2010">...</div>
<div class="pinfo published feb-2011">...</div>
etc...

There is always pinfo followed by review state (published or draft) and then time frame (month + year)

This is what I currently have:

// Hide all rows
$(".pinfo").hide();
// Now, show those rows where the selectors are in the filters built
for (idx in $cls)
{
    console.log('filter: '+$cls[idx]);
    $('.pinfo').filter($cls[idx]).show();
}

where $cls is an array of strings. The strings are class selectors built given then choices made by the user from an input form. For example:

$cls = [".Draft .sept-2011", 
        ".Published .sept-2011"]

I am having problems showing divs where the div has three selectors I need to match on.

Any help is appreciated.

Thanks!
Eric

  • 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-23T15:28:33+00:00Added an answer on May 23, 2026 at 3:28 pm
    1. Don’t use a for..in loop on an an array. Only use them on objects, and only with hasOwnProperty. You can use jQuery’s $.each here to loop through the array.
    2. The big problem. A selector like ".Draft .sept-2011" says “find elements with the class sept-2011 that have an ancestor element with the class Draft. You can combine multiple class selectors: what you want is .Draft.sept-2011.

    So your code might look like this:

    $cls = [".Draft.sept-2011", 
            ".Published.sept-2011"]
    
    var $pinfo = $('.pinfo').hide();
    $.each($cls, function(idx, val) {
        $pinfo.filter(val).show();
    });
    

    Note that I’ve also cached the $('.pinfo') selector call for the sake of performance.

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

Sidebar

Related Questions

Having problems iterating. Problem has to do with const correctness, I think. I assume
I am developing a groovy application and I am having problems when showing a
I'm having serious problems when showing a ProgressDialog while a service is getting ready...
I am having some problems in rebasing. It is showing conflicts. Actually, I had
Hey, well I'm having a problem and this weird symbol is showing up â€
Having problems with a small awk script, Im trying to choose the newest of
Im having problems displaying records to my view when passing viewdata to a user
Im having problems building a query with the linq to sql data query expression
Im having problems with classpaths. I have used them before with import but I'm
im having problems starting a codeigniter project, the problem is that when i do

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.