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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T02:58:59+00:00 2026-06-18T02:58:59+00:00

Inside myFunction, I have an each() iterator which finds the height of certain elements.

  • 0

Inside “myFunction”, I have an each() iterator which finds the height of certain elements. How can I assign each height value to an incrementally generated variable name, accessible outside the each loop?

function myFunction(){

    $('#div1, #div2 ... #divN').each(function(index){
        /* Increment variable name here */ = $(this).outerHeight();
    });

    // Also use those variables here

};

Thanks.

  • 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-06-18T02:59:00+00:00Added an answer on June 18, 2026 at 2:59 am

    This task is better solved with an array, and thanks to jQuery’s built-in methods, you can easily extract certain values from a set of elements to an array:

    var heights = $('#div1, #div2 ... #divN').map(function(){
        return $(this).outerHeight();
    }).get();
    // `heights` is an array and
    // heights[0] = height of first element in the tree
    // heights[1] = height of second element in the tree
    // ...
    

    I have to stress that the order of the heights array is not the order in which you put the elements in the selector! jQuery will always reorder the elements to how they are positioned in the DOM.

    Reference: .map, .get


    If you want the height somehow associated to something which can identify the element, you can use an object where the keys are the element IDs and the values are the heights:

    var heights = {};
    $('#div1, #div2 ... #divN').each(function(){
        heights[this.id] = $(this).outerHeight();
    });
    // `heights` is an object and
    // heights['div1'] = height of element with ID div1
    // heights['div2'] = height of element with ID div2
    // ...
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Inside my template function I have the following code: TypeName myFunction() { TypeName result;
I have a JTable inside a JScrollPane. After calling my function which should populate
Inside my Controller i have function that runs after user clicks on item, which
I have some html code which is loaded by reading some json. Inside that
I cannot change the value of an instance variable inside a function. I have
I have a regex which I'm using to match user functions inside an IDE
I have a div, inside of which are a few anchor links: <div id=myDiv>
I have a table containing in every row one cell inside which is checkbox
I have a UIWebView with text which contains web links inside it. The test
I want to have the text value from a <p> inside a <li> element.

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.