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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T02:05:16+00:00 2026-05-20T02:05:16+00:00

I have simple select that looks like this: <select id=region> <option value=> — country

  • 0

I have simple select that looks like this:

<select id="region">
  <option value=""> -- country -- </option> 
  <option value="842554592">Alberta</option> 
  <option value="708812360">Ontario</option>
  ...
</select>

I want to clear non-blank values and am wondering if jQuery has a simple method for this. I’m using:

$('.country').find('option[value!=""]').remove();

Which seems a bit ugly. 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-20T02:05:17+00:00Added an answer on May 20, 2026 at 2:05 am

    I want to clear non-blank values and am wondering if jQuery has a simple method for this.

    I don’t think it is a common enough requirement to expect jQuery to have something like that out of the box.

    You could write your own selector if you wanted…

    $.expr[':'].nonEmptyValue = function(obj){
       return $(obj).val() != '';
    };
    
    $('#region option:nonEmptyValue').remove();
    

    jsFiddle.

    If you don’t want the custom selector, you could also pass that function to filter() (replace obj with this).

    Also, if you wanted to count whitespace only values as empty, do a $.trim() first on the value returned.

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

Sidebar

Related Questions

I have some javascript that looks like this: var sel = '<option value={value} {selected}>{name}</option>';
I have a simple MySQL query that looks something like this SELECT * FROM
I have a really simple stored procedure that looks like this: CREATE PROCEDURE _Visitor_GetVisitorIDByVisitorGUID
I have a simple query that looks like select id, name from mytable where
Let's say I have a simple stored procedure that looks like this (note: this
I have a simple recursive array function that looks like this: function recursive_array($results) {
I have a simple PHP Array called $categories that looks like this: Array (
In the simple case, assume I have a table that looks like this: mysql>
I have very simple select like this: SELECT * FROM table WHERE column1 IN
Suppose I have a MySQL table called MyTable, that looks like this: +----+------+-------+ |

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.