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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T20:15:46+00:00 2026-05-26T20:15:46+00:00

I see various ways to update a input field from a select box but

  • 0

I see various ways to update a input field from a select box but how would I go about updating a select box based on the value of an input text field?

Input Text:

<input type="text" id="region-txt" name="region-txt" />

Select Box to be updated based on the input text value:

<select id="region" name="region">
  <option value="1">Test1</option>
  <option value="2">Test2</option>
</select>

Basically, I want the select box to be updated with the value of the input text field. Using jQuery so that would be ideal.

  • 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-26T20:15:46+00:00Added an answer on May 26, 2026 at 8:15 pm

    if you want to change the selected dropdown vale you can use

      $('#input').keyup(function(){
    
        var selected = $(this).text();
    
        $('#region').val(selected);
    
        });
    

    if you want to add a new option to list you can use

    $('#input').keyup(function(){
    
            var selected = $(this).text();
    
            if($('#region option[value='+selected+']').length){
                //item already exists
            }
            else {
                 $('#region').append(
                       $('<option></option>').val(selected).html("Test"+selected)
                 ); 
            } 
    
            });
    

    also can do for change event

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

Sidebar

Related Questions

I've been messing around a bit with various solutions to what I would see
I want to check a particular website from various locations. For example, I see
I've been looking at various ways to allow a user to select one or
I've seen various posts about how to implement the deletion of dependent rows from
Now I've see various ways to accomplish this effect: I used to accomplish this
Yes, I looked at various ways of implementing GOTO in java, but here is
SWFUpload doesn't work on ubuntu, I can see various mentions of it throughout the
I quite often see on the Internet various complaints that other peoples examples of
I have various Debug.WriteLine messages, I tried to see those messages using export MONO_DEBUG_LEVEL=debug,
I was bored and playing around with various options to gcc to see what

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.