Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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?
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 ...
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
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 ...
1
vote
1answer
84 views

Select Options Do Not Update Using jQuery on iPad

I made a site that updates select options when a race is loaded. When the user selects a race it brings up a series of select boxes. If a runner was previously assigned to a place then they will be ...
1
vote
3answers
227 views

Checking for existence of an option with certain text

I'm trying to use jQuery to check for the existence of an <option> that contains a particular string of text. My attempts so far are not working as I expect. Here's the HTML: <select> ...
0
votes
3answers
17 views

Remove an option from html multi select using prototype js library

I want to remove an option from a HTML multi select box using prototype. I tried the one below, and unfortunately it did not work $('left').options.item($('left').selectedIndex)).remove(); I found ...
0
votes
1answer
39 views

Dealing with <html:options>

Here is my question: when loading the Dropdowns dynamically using in JSP how to select a option by default. here is my code, <html:select property=”menu” > <html:option ...
0
votes
1answer
305 views

jquery set select option has no effect on the html

I have this html <select name="grid.SprintModel" id="grid_SprintModel"> <option value="">&lt;None&gt;</option> <option ...