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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T22:49:03+00:00 2026-05-26T22:49:03+00:00

I have some html that is created/output from a flash application & I need

  • 0

I have some html that is created/output from a flash application & I need to show/render it in firefox.

The HTML is badly formed, so it will spit out empty li elements & lists with no ul or ol elements but it will spit out the li elements.

Is there a css flag or any method to not show a li bullet if the li element is empty(see code example of what empty means below)?

If a li element has no innerText, then it shows the bullet. But I dont want it to do that, I want it to NOT show the bullet if there is no innerText in the li element. Is there any way to do this without having to parse HTML?

// example of badly formed HTML output from flash
<textformat leading="2">
    <li>
        <font style=" font-family: 'arial'; font-size: 14px; color: #FFFFFF; letter-spacing: 0px; ">
            <b>Influence and Negotiation</b>
            <font style=" font-size: 12px; color: #000000; ">
            </font>
        </font>
    </li>
</textformat>

// sometimes I get an empty li element, which in Firefox shows the bullet. I want to NOT show the bullet/li element if it is empty
<textformat leading="2">
    <li>
        <font style=" font-family: 'arial'; font-size: 14px; color: #FFFFFF; letter-spacing: 0px; ">
            <!-- empty li element -->
        </font>
    </li>
</textformat>
  • 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-26T22:49:04+00:00Added an answer on May 26, 2026 at 10:49 pm

    If you want to remove the empty li elements (where “empty” means none or only whitespace content), you could do:

    function getText(el) {
      if (typeof el.textContent == 'string') {
        return el.textContent;
      }
      if (typeof el.innerText == 'string') {
        return el.innerText;
      }
    }
    
    var li, lis = document.getElementsByTagName('li');
    var re = /^\s*$/;
    
    for (var i=0, iLen=lis.length; i<iLen; i++) {
      li = lis[i];
    
      if (re.test(getText(li))) {
        li.parentNode.removeChild(li);
      }
    }
    

    Alternatively, you could set the empty LIs to:

     list-style-type: none;
    

    by adding a suitable class, but results might not be consistent across browsers. Some will leave a space for the empty li, some will remove it. You could also use a class with:

     display: none;
    

    to leave the li there but not display it and not have a space. It’s up to you.

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

Sidebar

Related Questions

I have some HTML that I need to toggle between two structures - one
I have a some of html strings that my application generates. Each html 'snippet'
I have some HTML that looks like this: <ul class=faq> <li class=open> <a class=question
I have some HTML that displays fine on FireFox3/Opera/Safari but not with IE7. The
I have some HTML that looks like this: <div> <div class=value> <a href=# class=clicker>Some
I have some HTML that is stored as an attribute on a tag. I
If I have some HTML that looks like this: <div id=text> This is some
I have some html files that I want to convert to text. I have
I have some HTML and jQuery that slides a div up and down to
I have some static resources (images and HTML files) that will be localized. One

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.