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

  • Home
  • SEARCH
  • 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 7007547
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T21:37:17+00:00 2026-05-27T21:37:17+00:00

I have multiple divs in my body which need the same style: <div class=box></div>

  • 0

I have multiple divs in my body which need the same style:

<div class="box"></div>

I have a javascript that calculates the height of the browser window viewport height.
I want to apply that height to all my “box” classed divs.

<script type="text/javascript">
var box = document.getElementsByClassName('box')[0];
var height = (window.innerHeight) ? window.innerHeight: document.documentElement.clientHeight;
box.style.height=(height)+'px';
</script>

This works, but only with one div, it doesn’t make the second “box” div the same height as the previous. If I change the number in square brackets from 0 to 1 it applies the height to the second div. Also, if I make a second copy of the javascript so that the first script has [0] and the second [1] it applies the height to both divs. I can’t delete the square brackets because then the javascript doesn’t work at all. I have also tried to get the name with getElementsByTagName with no success.

How can I make this javascript apply the same height to all the divs with “box” class? Or is there another way to do what I try to do?

  • 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-27T21:37:17+00:00Added an answer on May 27, 2026 at 9:37 pm

    try the following:

    var elems = document.getElementsByClassName('box'),
        size = elems.length;
    
    for (var i = 0; i < size; i++) {
    
    var box = elems[i];
    var height = (window.innerHeight) ? window.innerHeight: document.documentElement.clientHeight;
    box.style.height=(height)+'px';
    }
    

    Demo: http://jsfiddle.net/JRdHD/

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

Sidebar

Related Questions

I have multiple toggle divs on the same page, and the div I'm toggling
I have multiple divs in my page as: <div imageId='image5' name='5' class='speechBubble'> <div imageId='image5'
I have a JavaScript script that will hopefully have multiple divs fade in/out every
so I have multiple divs of the same class below each other. I now
i have multiple divs with the same class on my page. I want to
Say I have a div container with multiple divs with some width and height.
I have a webpage that I use h1 tags multiple times within various DIVs
I have multiple classes that all derive from a base class, now some of
This should be simple. I have ajax returning string, with multiple divs. I need
I want to toggle a bunch of divs that each have the same id.

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.