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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T06:10:39+00:00 2026-05-26T06:10:39+00:00

I have four DIV elements on my page. Each has it’s own array which

  • 0

I have four DIV elements on my page. Each has it’s own array which I attached using data().

Depending on user interaction (on page navigation) jquery stores loaded element IDs in one of the arrays.

The setup and pushing elements works and looks like this:

$('div:jqmData(role="panel")').each(function(index) {
    if ( $(this).jqmData('hash') == 'history' ) {
         var id = $(this).jqmData('id');
         $(this).data("stack", []);
         // inital entry = startpage
         $(this).data("stack").push('#'+$(this).find('.starter').attr('id')); 
         }
}); 

Adding elements:

$('div:jqmData(role="page")').bind( "pagechange", function( event) {
      var $targetPanel = $( event.target ),                 
      $targetPage = '#'+ $.mobile.path.stripHash( hash );   
      $targetPanel.data("stack").push($targetPage);
      });

I now need to know which array is the longest and what the last entry was?

No clue how to do that…

Can’t use maxValue or math, as I only have entries like #pageSome, #pageOther. There must be a better way than looping through all arrays, getting their length and trying to if-else highest value…

Thanks for help!

  • 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-26T06:10:40+00:00Added an answer on May 26, 2026 at 6:10 am

    You can use the sort method to find the longest array

    var arr = [];
    arr.push([1,2,3,4,5,6]);
    arr.push([1,2,3,4,5,7,8]);
    arr.push([1,2,3,4,5]);
    arr.sort(function(a,b){return b.length - a.length});
    // arr is now sorted with [0]  being the longest array
    

    Then in order to get those arrays to be sorted, you could get them with a function like so:

    $('div:jqmData(role="panel"),div:jqmData(role="page")').each(function(index) {
        arr.push($(this).data("stack"));
    });
    

    or if the data in the arrays don’t change often, you could push in the arrays as they are built in the two functions specified in the question.

    EDIT per the latest information via comments

    Then when you want to reference the longest array and use it as a jQuery selector, you can use the following code:

    var longest = arr[0].join(",") // arr was sorted to have the first index contain the longest array
    $(longest).hide();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have four div s which are animated using size, height and positions; that
I have four <div> in one page. I want to display 25 records on
I have 5 divs in my page. Father div container includes four child div.
I have a page which essentially looks like this: <div id=foo> <a>One</a>, <a>Two</a>, <a>Three</a>,
If i have the following markup; <div id=container> <div id=box> <div id='sameHeight'>One<br>two<br>three</div> <div id='sameHeight'>four</div>
I have four classes which share some arrangement of four properties. I have currently
I have four UINavigationControllers assigned each to a tab in a UITabBarController. Each UINavigationController
Let's say I have four tables: PAGE , USER , TAG , and PAGE-TAG
I have four images on a page that on hover, needs to replace the
I am setting up a page with jQuery's Cycle plugin and have four divs

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.