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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T18:38:57+00:00 2026-05-12T18:38:57+00:00

I have been trying to find a solution to this with no avail. The

  • 0

I have been trying to find a solution to this with no avail. The idea of what i’m trying to achieve is to be able to find all unique combinations of multiple lists. So, let’s say I have 3 lists of checkboxes (but this is an unknown number in the real-life application), Colour, Size, Pack Size. The items in the list’s will be unqiue.

[0] => ['blue', 'green']
[1] => ['small', 'medium', 'large']
[2] => ['Pack Of 6', 'Pack Of 8']

I will want to get “Blue, Small, Pack Of 6“, “Blue, Medium, Pack Of 6“, “Blue, Large, Pack Of 6“, “Blue, Small, Pack Of 8“, “Blue, Medium, Pack Of 8” etc..
The ordering isn’t important, but would be nice to have it logically grouped.

I already have the lists pulled out into an array using jQuery:

       options = [];

       jQuery('.option-types').each(function(){
            opts = [];
            jQuery('input:checked', this).each(function(){
                opts.push(jQuery(this).next().text());
            });
            options.push(opts)
        });

If there is a recursive functional path to answer this that would be ideal, as like i said the number of lists could be anything, aswell as the contents of the lists.

Hope you guys and girls can help, this is doing my head in.

Cheers – Dan

  • 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-12T18:38:57+00:00Added an answer on May 12, 2026 at 6:38 pm

    This should work 🙂

    var recursiveSearch;
    var possibilities = [];
    
    recursiveSearch = function (text, depth )
    {
     text = text || "";
     depth = depth || 0;
     for ( var i = 0; i < options[depth].length; i++ )
     {
       // is there one more layer?
       if ( depth +1 < options.length )
         // yes: iterate the layer
         recursiveSearch ( text + ((text=="") ? "" : " ") + options[depth][i] , depth +1 );
       else
         // no: this is the last layer. we add the result to the array
         possibilities.push ( text + options[depth][i] );
     }
    }
    
    
    recursiveSearch ( );
    

    with your array

    [0] => ['blue', 'green']
    [1] => ['small', 'medium', 'large']
    [2] => ['Pack Of 6', 'Pack Of 8']
    

    the result would be sth like this:

    1. blue small pack of 6
    2. blue small pack of 8
    3. blue medium pack of 6
    4. …
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have searched on this forum and haven't been able to find a solution
I have been trying for about an hour now to find an elegant solution
I have been trying to find a really fast way to parse yyyy-mm-dd [hh:mm:ss]
I have been trying to find information on how to retrieve attachments from a
I have been trying to determine a best case solution for registering a COM
I have been trying to get around this error for a day now and
I have been trying to migrate a database from Sybase to MySQL. This is
I really need some help with this as I have been trying to fix
I can't seem to find a solution to this issue. I'm trying to get
for the last hour I have been trying to figure this out myself but

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.