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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T16:06:55+00:00 2026-06-04T16:06:55+00:00

I have a bunch of unique options in a <select> . I need to

  • 0

I have a bunch of unique options in a <select>. I need to add a new option only if it is unique and not present in the existing options.

How can I find if a given option already exists in a given select using jquery?

For example:

<select id="combobox">
    <option value="">Select one...</option>
    <option value="Apple">Apple</option>
    <option value="Banana">Banana</option>
    <option value="Pears">Pears</option>
</select>
  • New valid option: Pear
  • New invalid option: Apple
  • 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-04T16:06:57+00:00Added an answer on June 4, 2026 at 4:06 pm
    if (!$("#combobox option[value='Apple']").length)
        // Add it
    

    Making it reusable can be:

    if (!$("#combobox option[value='" + value + "']").length)
        // Add it
    

    Live DEMO

    case insensitive:

    var isExist = !$('#combobox option').filter(function() {
        return $(this).attr('value').toLowerCase() === value.toLowerCase();
    }).length;​
    

    Full code:(of the demo)

    $('#txt').change(function() {
        var value = this.value;
    
        var isExist = !!$('#combobox option').filter(function() {
            return $(this).attr('value').toLowerCase() === value.toLowerCase();
        }).length;
    
        if (!isExist) {
            console.log(this.value + ' is a new value!');
            $('<option>').val(this.value).text(this.value).appendTo($('#combobox'));
        }
    });​
    

    Live DEMO

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

Sidebar

Related Questions

I have a bunch of pdf files that starts with a unique number. And
I have a bunch of items in my database. Each is assigned a unique
I have a bunch of SQLite db files, and I need to merge them
I have a div with a unique ID. Under that div are a bunch
I have a bunch of checkboxes each with a unique name and value using
We have a bunch of landingpages: http://ourdomain/landingpage . Each landingpage is unique in terms
I have a bunch of tables that I'm joining in a view. I need
I have several tables whose only unique data is a uniqueidentifier (a Guid) column.
Basic problem I have a bunch of records and I need to get latest
I have a bunch of classes with a unique set of methods. class1 {

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.