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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T01:13:22+00:00 2026-05-26T01:13:22+00:00

I have a div with a fixed height and overflow:hidden; I want to check

  • 0

I have a div with a fixed height and overflow:hidden;

I want to check with jQuery if the div has elements that are overflowing past the fixed height of the div. How can I do this?

  • 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-26T01:13:22+00:00Added an answer on May 26, 2026 at 1:13 am

    You actually don’t need any jQuery to check if there is an overflow happening or not. Using element.offsetHeight, element.offsetWidth , element.scrollHeight and element.scrollWidth you can determine if your element have content bigger than it’s size:

    if (element.offsetHeight < element.scrollHeight ||
        element.offsetWidth < element.scrollWidth) {
        // your element have overflow
    } else {
        // your element doesn't have overflow
    }
    

    See example in action: Fiddle

    But if you want to know what element inside your element is visible or not then you need to do more calculation. There is three states for a child element in terms of visibility:

    enter image description here

    If you want to count semi-visible items it would be the script you need:

    var invisibleItems = [];
    for(var i=0; i<element.childElementCount; i++){
      if (element.children[i].offsetTop + element.children[i].offsetHeight >
          element.offsetTop + element.offsetHeight ||
          element.children[i].offsetLeft + element.children[i].offsetWidth >
          element.offsetLeft + element.offsetWidth ){
    
            invisibleItems.push(element.children[i]);
        }
    
    }
    

    And if you don’t want to count semi-visible you can calculate with a little difference.

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

Sidebar

Related Questions

I have a div element with fixed height and width and overflow:hidden, and I
I have two elements: 1. A parent of fixed height, overflow:hidden 2. Its child,
I have a container div with a fixed width and height , with overflow:
I have got a div that needs to have a fixed height and will
Suppose we have the following code: <div id=test style=width:200px; height: 200px; overflow: hidden;> <p>Lorem
I have a DIV defined with a fixed height: .w { height: 100px; overflow:
Aim The aim is to a have a container DIV with a fixed height
HI, I want to find all input elements in a HTML string that has
I have a div with width:100px and height:100px (say) Inside that, there is just
I have a textarea tag that has text I want a user to edit.

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.