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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T14:21:43+00:00 2026-06-05T14:21:43+00:00

All in all I want to remove any and all empty options from a

  • 0

All in all I want to remove any and all empty options from a SELECT input. The select is dynamically generated from a script someone else wrote, based on an object it receives. My problem is sometimes the object has empty values, leaving me with a select option set that leaves something to be desired.

Anyway almost every time the first option in the set is empty. So I want to remove that and apply selected="selected" to the first option that comes up after the first one is removed., while removing any other possibilities that have empty values.

So in testing the initial concept I came up with

$(select).each(function(){
                if ($(this+' option:selected').val() == '')
                {
                    //this assumes that your empty value is ''
                    $(this).remove();
                }
            });

which seems to remove the entire select, and I know its cause this is defined as the select itself.

I’ve also tried
$(select +'option[value=""]').remove();

Currently I am only trying to get it to remove the options with the empty values, after I can achieve that then I will figure out how I to select the first item on the list officially as far as the DOM would be concerned.

also worth mentioning ‘select’ the variable being passed is defined previously in the function so it is working for that part of the notion. Just sayin so no one thinks I am some how confusing it with something else.

  • 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-05T14:21:46+00:00Added an answer on June 5, 2026 at 2:21 pm
    • you can use .filter() to filter out the empty option elements and remove them all at once

    • use .prop() to set special attributes like selected

    Code:

    $('select option')
        .filter(function() {
            return !this.value || $.trim(this.value).length == 0;
        })
       .remove();
    
    $('select option')
        .first()
        .prop('selected', true);​
    

    DEMO

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

Sidebar

Related Questions

I want to remove all empty strings from a list of strings in python.
I want to remove all files from Git at ~/bin/. I run git rm
I want to remove all special characters from a string. Allowed characters are A-Z
I want to remove all vba-modules from an MS Word template using VBScript. I
I want to remove all non-alphanumeric and space characters from a string. So I
I want to remove all the unpartnered or unpaired parenthesises from a string. exampleStr
I want to remove all the white spaces from a given text file. Is
I want to remove all special characters from a string. Allowed characters are A-Z
I want to remove all movieclips in my wrapper movieclip. wrapper.removeMovieClip(ALL CONTENT); how can
I want to remove all stored revision info, except for the most up to

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.