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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T13:26:50+00:00 2026-05-10T13:26:50+00:00

Given a select with multiple option’s in jQuery. $select = $(<select></select>); $select.append(<option>Jason</option>) //Key =

  • 0

Given a select with multiple option’s in jQuery.

$select = $('<select></select>'); $select.append('<option>Jason</option>') //Key = 1        .append('<option>John</option>') //Key = 32        .append('<option>Paul</option>') //Key = 423 

How should the key be stored and retrieved?

The ID may be an OK place but would not be guaranteed unique if I had multiple select’s sharing values (and other scenarios).

Thanks

and in the spirit of TMTOWTDI.

$option = $('<option></option>'); $select = $('<select></select>'); $select.addOption = function(value,text){     $(this).append($('<option/>').val(value).text(text)); };  $select.append($option.val(1).text('Jason').clone())        .append('<option value=32>John</option>')        .append($('<option/>').val(423).text('Paul'))        .addOption('321','Lenny'); 
  • 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. 2026-05-10T13:26:51+00:00Added an answer on May 10, 2026 at 1:26 pm

    Like lucas said the value attribute is what you need. Using your code it would look something like this ( I added an id attribute to the select to make it fit ):

    $select = $('<select id='mySelect'></select>'); $select.append('<option value='1'>Jason</option>') //Key = 1    .append('<option value='32'>John</option>') //Key = 32    .append('<option value='423'>Paul</option>') //Key = 423 

    jQuery lets you get the value using the val() method. Using it on the select tag you get the current selected option’s value.

    $( '#mySelect' ).val(); //Gets the value for the current selected option  $( '#mySelect > option' ).each( function( index, option ) {     option.val(); //The value for each individual option } ); 

    Just in case, the .each method loops throught every element the query matched.

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

Sidebar

Ask A Question

Stats

  • Questions 124k
  • Answers 124k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Are you running on OS 3.0? I saw the same… May 12, 2026 at 1:19 am
  • Editorial Team
    Editorial Team added an answer It looks like you need to register Apache::Session::Memcached with Apache::Session::Wrapper,… May 12, 2026 at 1:19 am
  • Editorial Team
    Editorial Team added an answer Use DATENAME or DATEPART: SELECT DATENAME(dw,GETDATE()) -- Friday SELECT DATEPART(dw,GETDATE())… May 12, 2026 at 1:19 am

Related Questions

Given a select with multiple option's in jQuery. $select = $(<select></select>); $select.append(<option>Jason</option>) //Key =
I want to load a list of records given a possibly lengthy list of
I've got a sections table, and an items table. The problem is each item
Given a model with ForeignKeyField (FKF) or ManyToManyField (MTMF) fields with a foreignkey to
Ok, so having given up on getting the built in .NET configuration system to

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.