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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T07:17:48+00:00 2026-05-23T07:17:48+00:00

I have tabs on my website, but sometimes the tab doesn’t contain any info

  • 0

I have tabs on my website, but sometimes the tab doesn’t contain any info like this:

        <div class="idTabs">
                    <div class="tabIt">
                        <a class="selected" href="#productDetails" name="Tab1">Description</a>
                    </div>
                    <div class="tabIt">
                        <a href="#specs" name="Tab2" class="">Specifications</a>
                    </div>
        </div>


  <div class="productInformation">

        <div class="information">

            <div id="productDetails" style="display: block; ">
                   <div class="productInfo">
                   </div>
            </div>
            <div id="specs" style="display: none; ">

            </div>
        </div>

   </div>

How can I make it shouldn’t display the tabs if it doesn’t contain any information?
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-05-23T07:17:49+00:00Added an answer on May 23, 2026 at 7:17 am

    You’ll probably need RegEx for that. Something like this:

    <script type="text/javascript">
        regex = /(\w)/;
    
        // div to check to be empty
        div = document.getElementsByClassName('productInfo')[0];
    
        if(regex.test(div.innerHTML) === false){
            document.getElementById('productDetails').style.display = 'none';
            document.getElementsByClassName('tabIt')[0].style.display = 'none';
        }
    </script>
    

    Same with jQuery:

    <script type="text/javascript">
        regex = /(\w)/;
    
        div = $('div#productDetails div.productInfo').text();
    
        if(regex.test(div) === false){
            $('#productDetails').hide();
            $('.tabIt').first().hide();
        }
    </script>
    

    It will also hide the DIV if it contains only whitespaces.

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

Sidebar

Related Questions

I have an ASP.NET website divided in tabs like this |TITLE1| - |TITLE2| -
I have jquery tabs on my website but on smaller screens the tabs wrap
I have 3 tabs, created by js. Active tab has class named active and
I need help. I have 6 tabs on website. But when i`m clicking to
I have tabs on the website: Cinema, Concerts, Clubs, Theatres, Children, Other. Each tab
I have some jQuery tabs on a website and I am trying to make
So I want to have tabs with default style but I want to handle
I have a tabs on a page: <div id=tabs> <ul> <li><a href=#tabs-1>tab1</a></li> <li><a href=#tabs-2>tab2</a></li>
I have a tabs as views in my activity. Each tab represents a ListView
I have three tabs. When I press the tab button on the bottom, is

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.