In HTML, the option element represents an option in a select element or as part of a list of suggestions in a datalist element.

learn more… | top users | synonyms

0
votes
2answers
25 views

Removing options from select using jQuery

Suppose I have a Select element: <select> <option value="Name 1">Simon</option> <option value="Name 2">Frank</option> <option value="Name ...
0
votes
2answers
17 views

How to adjust Select drop-down height

I've looking round the internet for a solution to this and everyone is talking about different things or just saying does size="x" help? I've made a Plunk to illustrate my issue. On my screen I can ...
0
votes
1answer
25 views

jQuery Switching order of two <options> with specific values

I am looking to reorder a dropdown menu using jQuery's .insertBefore method. I'm having some trouble with selecting each option's value attribute, though. Example: http://jsfiddle.net/4WGvB/1/ ...
0
votes
1answer
104 views

Dynamically create option elements in Javascript

What is the preferred way in Javascript to dynamically create DOM option elements? I've found both the Option constructor and the createElement variant used in actual code like this: var option = new ...
0
votes
2answers
180 views

How can i hide selectbox 2, if i select option in box 1?

I need help! i want to hide the second select-box, by change select-box 1. If i select value 1 on select 1, select-box 2 is hide. If i select value 2, select-box 2 is show. <tr ...
1
vote
2answers
142 views

Getting selected options with querySelectorAll

I wonder if it's possible in Javascript to get the currently selected options in a <select multiple> field using the Selctors API rather than a "stupid" iteration over all options. ...
0
votes
0answers
98 views

Abcdpdf addimagehtml issue with special characters

I am using AddImageHtml method of Abcpdf8. My Html contains scandic characters (ä), these are not displayed properly when i use AddImageHtml method of Abcpdf8. AddImageUrl solves the issue but for ...
0
votes
2answers
388 views

JS - option.style.display = “none” working in chrome but NOT in safari [duplicate]

This is the example I'm working on: http://jsfiddle.net/4suwY/5/ HTML: <select id="asd"> <option>hello</option> <option>I'M THE CHOSEN ONE</option> ...
2
votes
4answers
134 views

Add and select a “fake” <option> value to a <select>

I need to add a "fake" <option> to a <select>, that will be shown as the selected one, but that can't be selected in the dropdownmenu if the user want to change item. For example: I have ...
0
votes
1answer
120 views

Change event on a dynamically loaded option list is not called

I would like to load dynamically (using a velocity object) a select drop down list, and then associate the change event with it; to do it I wrote so: $(function() { var tableList = ...
1
vote
1answer
326 views

Smarty html_options value attribute not working

I am trying to display an dropdown list with smarty html_options. It shows the dropdown nicely but output values as 0,1,2,3,4,5. But I want values to be 100,150,200,250,300,350. ======PHP ========= ...
1
vote
2answers
102 views

MYSQL fetch array cannot catch row's name in php

Here is my code $sql = "SELECT distinct s.doc_id, s.pat_id, s.approved, p.pat_fullname, p.pat_id from patient p, subscribe s WHERE s.doc_id = '$doc_id' AND s.approved = '1' AND s.pat_id = p.pat_id;"; ...
1
vote
1answer
186 views

mousedown event on options in select with jquery .on

I was reading the documentation of the .on event handler of jQuery and I started playing around with it. I have a simple <select> element with the multiple attribute set to true. However, I ...
7
votes
5answers
742 views

Difference between find('option[selected]') and find('option').filter('[selected]')

Scenario: I got 2 jQuery expressions: /* A */ $('select').find('option[selected]'); /* B */ $('select').find('option').filter('[selected]'); which mean (let's assume there's only one select in the ...
0
votes
4answers
1k views

jQuery get selected option value (not the text, but the attribute 'value')

Okay, I have this code: <select name="selector" id="selector"> <option value="1">Option 1</option> <option value="2">Option 2</option> </select> And I'd like to ...
0
votes
1answer
71 views

Setting Selected Option With GeoPlugin

I am using the http://geoplugin.net plugin to detect the users location. I have a <select> with a list of states, and using the jQuery $.getJSON(url, function(data){ var state = ...
0
votes
1answer
110 views

Smarty cat escapes html

I have simple code: {html_checkboxes values=$user_data['names']['id'] output = $user_data['names']['user_name']|cat:' | Status: '|cat:$user_data['names']['status'] escape=false} In array ...
0
votes
1answer
533 views

binding both optionValue and optionText in a select box from arbitrary JavaScript objects

I'm able to bind the optionsText but not the optionsValue. Should both functions be identical? rendered html: (WHERE IS THE VALUE?) <option value="">ROSSFORD D</option> View: ...
1
vote
0answers
409 views

Internet Explorer confused after scrollTop set in select listbox

The following has been tested in Internet Explorer 8 on Windows XP, Internet Explorer 9 on Windows 7 and Chrome 17 on Windows 7. It works properly in Chrome, but not IE. Briefly, IE seems to get ...
1
vote
2answers
412 views

Select dropdown menu text split left and right?

Not sure if this can be done but can I split the text in the option tags? Example, normal styling: <select> <option value="">First - A</option> <option value="">Car - ...
0
votes
3answers
1k 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 ...
1
vote
1answer
249 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 ...
0
votes
1answer
397 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 ...
2
votes
3answers
178 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: ...
0
votes
1answer
599 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 ...
1
vote
3answers
576 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> ...
4
votes
4answers
9k 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 ...
5
votes
3answers
16k 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 ...
6
votes
4answers
7k 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?