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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T20:29:21+00:00 2026-05-18T20:29:21+00:00

I have a select list containing variables from a query <tr> <td>County Name:</td> <td>

  • 0

I have a select list containing variables from a query

<tr>
  <td>County Name:</td>
    <td>
      <select name="countyName" onchange="countyID.value = countyName.value">
                <option>Select a County</option>
        <cfloop query = "getCounties">
        <option value="#countyName#" >#countyName#&nbsp;&nbsp;&nbsp;#countyID#</option>
        </cfloop>
    </select>
    </td>
</tr>

How can I populate the County ID field?

<tr>
  <td>County ID:</td>
    <td><input type="Text" name="countyID">
     </td>
</tr>

I’ve never used jQuery. Is there a way to use just JavaScript? As you can see I’ve attempted JavaScript, however I can only populate countyID with the countyName and I need it populated with countyID.

  • 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-18T20:29:22+00:00Added an answer on May 18, 2026 at 8:29 pm

    Breaking it out into a function this should work for you: Live Example

    <table>
        <tbody>
            <tr> <td>County ID:</td> <td><input id="countyId" type="Text" name="countyID"> </td> </tr>
            <tr> <td>County Name:</td> 
    
                <td> 
                    <select name="countyName" onchange="update(this)">
                        <option>Select a County</option> 
                        <option value="1234">asdf</option> 
                        <option value="4321">asdf2</option> 
                    </select> 
                </td>
            </tr>
        </tbody>
    </table>
    <script>
        function update( elem ) {
        document.getElementById('countyID').value = elem.value;
        }
    </script>
    

    Or in short just change

    this:

    <select name="countyName" onchange="countyID.value = countyName.value">
    

    to this, and it should work

    <select name="countyName" onchange="document.getElementById('countyId').value = this.value">
    

    You need to reference your DOM elements via document.getElementById() and not just their id alone

    Another example here

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

Sidebar

Related Questions

I have a select list containing variables from a query <tr> <td>County Name:</td> <td>
Suppose I have a drop-down list like: <select id='list'> <option value='1'>Option A</option> <option value='2'>Option
I have select query that fetch record based on a condition Select * from
I have two tables, one containing a list of different options users can select
I want to have a select-only ComboBox that provides a list of items for
Right now, I have SELECT gp_id FROM gp.keywords WHERE keyword_id = 15 AND (SELECT
I have a select query that currently produces the following results: Description Code Price
I have a table with multiple rows in each row is a select list
I have a List<> of objects containing two strings and a DateTime. I want
I have the following dropdown box <form name=myform method=POST ACTION=songs.php> Select Category: <select id=sel

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.