Tagged Questions

The select (<select>) HTML element represents a control that presents menu of options. The options within the menu are represented by <option> elements, which can be grouped by <optgroup> elements. Options can be pre-selected for the user.

learn more… | top users | synonyms

136
votes
15answers
117k views

What is the best way to add options to a select from an array with jQuery?

What is the best method for adding options to a select from a JSON object using jQuery? I'm looking for something that I don't need a plugin to do, but would also be interested in the plugins that ...
95
votes
12answers
209k views

Check if option is selected with jQuery, if not select a default

Using jQuery, how do you check if there is an option selected in a select menu, and if not, assign one of the options as selected. (The select is generated with a maze of PHP functions in an app I ...
56
votes
9answers
72k views

Is it possible to style a select box?

I've got an HTML select box that I need to style. I'd prefer to use just CSS but if I have to I'll use jQuery to fill in the gaps. Can anyone recommend a good tutorial or plugin? I know, Google, but ...
16
votes
8answers
21k views

Fire event each time a DropDownList item is selected with jQuery

I have a dropdown: <asp:DropDownList id="dropdownid" runat="server" class=blah"/> in my jQuery, I assign change event like this: $('#dropdownid').change(function() {......}); Now, this ...
16
votes
4answers
25k views

Height of an HTML select box (dropdown)

Can someone confirm that its not possible to change the height of a dropdown that is shown when you click on a select box. The size attribute of the select makes it look like a list, the height ...
15
votes
13answers
13k views

Solve the select overlap bug in IE6

When using IE, you cannot put an absolutely positioned div over a select input element. That's because the select element is considered an ActiveX object and is on top of every HTML element in the ...
9
votes
8answers
11k views

What is the most efficient way to sort an Html Select's Options by value, while preserving the currently selected item?

I have jQuery but I'm not sure if it has any built-in sorting helpers. I could make a 2d array of each item's text, value, and selected properties, but I don't think that javascript's built in ...
8
votes
3answers
35k views

JQuery create select list options from JSON, not happening as advertised?

How come this doesn't work (operating on an empty select list <select id="requestTypes"></select> $(function() { $.getJSON("/RequestX/GetRequestTypes/", showRequestTypes); } ...
7
votes
5answers
2k views

Many people don't know how to multi-select items in a HTML <select> control, so…?

I know many people who use computers every day, who do not know how to select multiple items in a HTML select box/list. I don't want to use this control in my pages any more: Please pick 3 options: ...
6
votes
3answers
1k views

Dealing with huge data in select boxes

Hi I am using jQuery and retrieving "items" from one of my mySQL tables. I have around 20,000 "items" in that table and it is going to be used as a search parameter in my form. So basically they can ...
6
votes
7answers
27k views

How to expand 'select' option width after the user wants to select an option

Maybe this is an easy question, maybe not. I have a select box where I hardcode with width. Say 120px. <select style="width: 120px"> <option>ABC</option> <option>REALLY ...
5
votes
1answer
159 views

Populate Multiple Select Controls with the Same Values using jQuery

I have two select controls that I want to populate with the exact same options. I started with the following code (which does not work): var result = // raw <option></option> html from ...
5
votes
1answer
736 views

by jquery, set to option of html-select element selected atribude by text, not value

I have a select element. <select class='cSelectType'> <option value="1">one</option> <option value="2">two</option> <option ...
5
votes
2answers
491 views

Dropdown currentIndex onchange

there is a dropdown with 5 options. Currently,option 2 is selected.The user selects option 4 now.The onchange event gets fired which is caught in a JS function listening for onchange on the select. ...
5
votes
6answers
11k views

Faster way to populate <select> with Javascript

I have two <select> boxes on a form. Selecting an item in the first <select> box will determine what should appear in the second <select> (Using Ajax http_request). In some cases there can ...
5
votes
4answers
6k views

HTML <select> what is the name of on select event?

Does the HTML "select" element have an on select event? what exactly is the name of the event?
5
votes
9answers
3k views

Drop Down List Issue

I’m having an issue where a drop down list in IE 6/7 is behaving as such: You can see that the drop down width is not wide enough to display the whole text without expanding the overall drop down ...
4
votes
1answer
5k views

Styling HTML SELECT in Internet Explorer

Any way to customize the border and background of an HTML SELECT in IE? I can style the border with simple CSS in Firefox, but apparantly not in IE.
4
votes
4answers
3k views

Is there a max number of options (values) in HTML drop down control?

Does anyone know how many options a drop down list can have? Is it unlimited? How many before performance degrades?
4
votes
10answers
9k views

How do I put a space character before option text in a HTML select element?

In a drop down list, I need to add spaces in front of the options in the list. I am trying <select> <option>&#32;&#32;Sample</option> </select> for adding two spaces ...
3
votes
2answers
853 views

A Better Django Admin ManyToMany Field Widget

I find the the Django Admin's default models.ManyToManyField widget to be cumbersome to use. It's the HTML select element and if you have a lot of Objects of the "other" model then it's quite ...
3
votes
5answers
454 views

Can you have multiple lines in an <option> element?

Is there a way to have multiple lines in an <option> element? Like this: ------------------------- | Normal <option> element | ------------------------- | <option> element broken ...
3
votes
3answers
4k views

How to get selected value of a html select with asp.net

I have code below: <select id="testSelect"> <option value="1">One</option> <option value="2">Two</option> </select> <asp:Button ID="btnTest" ...
3
votes
3answers
1k views

In Django form, custom SelectField and SelectMultipleField

I am using Django everyday now for three month and it is really great. Fast web application development. I have still one thing that I cannot do exactly how I want to. It is the SelectField and ...
3
votes
2answers
2k views

Jquery - issue with click event on Select dropdowin in IE6

I am having an issue with a jquery function. It works in FF but not in IE 6. I want the function to be triggered when any option inside a select drop down is clicked. Here is the start of my ...
3
votes
1answer
932 views

Disable or ignore mousedown on select field in firefox

Is there any way to make it so a click on a select input field does not open the list of options? I tried returning false from onmousedown and onclick, I tried calling this.blur() in onfocus, I tried ...
3
votes
4answers
11k views

Javascript to Select Multiple options

I have a form with a select box that allows multiple options. After a user saves these options, it stores them in a database table. I can then read this database table to get the options they chose ...
3
votes
6answers
2k views

IE Input Select Box

I'm looking for the easiest solution to fixing a problem I have in Internet Explorer (6,7 & 8), be it CSS or using jQuery. I have a SELECT Input with a defined width (because of where it sits in ...
3
votes
2answers
6k views

Looping through all select elements with JavaScript Prototype library

How can I (if it is possible) use the Prototype library to loop through all select elements on a page and access the element? In the documentation I found easily shortcuts for referencing elements ...
3
votes
2answers
875 views

jQuery Magic with hook_form_alter in Drupal

There isn't much tutorial in the Pro Drupal book about ahah, but I'm trying to start off with something simple. I have two content types, 'topic' and 'tips' and categories. The topics are a node ...
3
votes
6answers
29k views

Change border color on <select> HTML form

Is it possible to change the border color on a <select> element in an HTML form? The border-color style works in Firefox but not IE. I could find no real answers on Google.
3
votes
3answers
5k views

Javascript: How to dynamically create an <option> that contains an HTML entity (— … «)

I'd like to add an <option> element to a <select> element where the <option> element's text contains an HTML entity: &mdash; In HTML, the code would look like this: <select ...
3
votes
2answers
11k views

How to post the selections of an HTML List Box with multiple selected values

I have a listbox on an HTML form with a Submit button. The listbox has multiple selection enabled. I am able to select multiple values in the listbox, but I don't know how to figure out what values ...
3
votes
4answers
381 views

What descriptive variable name can I use here?

I'm creating a custom Java Struts tag that is for building and formatting an html select box in a standardised way (part of our usability guidelines). Each select box has an additional/initial value ...
3
votes
4answers
5k views

How to correctly add a <select> to a page with jquery and let the change event work?

I've currently got multiple select's on a page that are added dynamically with ajax calls using jquery. The problem I've had is I could not get the change event to work on the added select unless I ...
3
votes
7answers
17k views

HTML Select Tag with black background - dropdown triangle is invisible in Firefox 3

I have the following HTML (note the CSS making the background black and text white) <html> <select id="opts" style="background-color: black; color: white;"> ...
2
votes
5answers
48 views

Is it possible to have a HTML SELECT/OPTION value as NULL using PHP?

The following is a snippet from my HTML form which pulls the options from the table rows accordingly. What I want to do is have the first option value to be NULL so when no choice is made, NULL is ...
2
votes
1answer
75 views

ViewBag oddity in creating a MultiSelectList

I have spent a lot of time scouring the various forums for help on MultiSelectLists in asp.net MVC3. Finally figured out how to solve my issue now I'm trying to cut down on my code and I've come ...
2
votes
3answers
50 views

Sharing options between selects (using HTML and jQuery)

Looked through many answers, but couldn't find one solving this. I have four (potentially n-number of) <select> lists, with an equal number of <option> possibilities in each, like this: ...
2
votes
1answer
299 views

jQuery datepicker's year dropdown pops open and closed in IE8

I'm seeing an issue in IE8 with the Year dropdown in a jQuery datepicker dialog. The dropdown opens when I click on it but only stays open until I release the mouse button. I've only verified it in ...
2
votes
3answers
333 views

Removing vertical scrollbar in a dropdown

How to remove vertical scrollbar in a dropdown?
2
votes
2answers
48 views

What is the correct way of getting the value of a selected drop down item using JavaScript?

I thought i knew this, and now I'm quite embarassed becuase I don't :-/ This JSFiddle demonstrates two ways of getting the value of a selected drop down item in JavaScript. Code reproduced here: var ...
2
votes
1answer
333 views

HTML Select box does not scale in IE

I have an HTML select box inside a div container. Now, on "zooming in/out" in Google Chrome, the select box and the container both scale together. However, in IE, the HTML select box does not ...
2
votes
4answers
679 views

Disable highlighting in an HTML SELECT box

I have a select box, <select multiple=true, that the user populates with values via a Picklist mechanism. I would like to disable highlighting in this box because, by definition, the values in this ...
2
votes
3answers
19k views

Zend Framework - Set 'selected' value in select box dropdown list

I am adding a select element to a Zend_Form instance as follows: $user = $form->createElement('select','user')->setLabel('User: ')->setRequired(true); foreach($users as $u) { ...
2
votes
1answer
9k views

Using Selenium for selecting an option on a select with optgroup

I'm trying to select a value in a select element. I'm using Selenium RC (Java) to run the test cases. I understand that the code for selecting a value is given by: selenium.select("locator", ...
2
votes
3answers
4k views

Rendering a hierarchy of “OPTION”s in a “SELECT” tag

My problem is HTML and CSS related. I have a hierarchy type structure that I want to display inside a list. The hierarchy contains Countries, States and Cities (it is three levels deep). I want to ...
2
votes
5answers
5k views

How to POST empty <select .. multiple> HTML elements if empty?

I have the following multi-select box in a HTML form, where user can select one or more option. <select id="eng_0" name="eng_0[]" multiple size="3"> <option ...
2
votes
2answers
576 views

Help with html select replacement

I hate default select control, that's because it can't be styled in IE using CSS. This is why I developed a new select control from scratch, using HTML + CSS + JavaScript. I did a great job in the ...
2
votes
2answers
1k views

Linked drop down lists and load div

I`m kind of new when it comes to programming but am trying to learn. What I need to do for my site is have 2 or 3 linked drop down menus so when I select an item from the first one, the second one ...

1 2 3 4