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
0answers
5 views

JavaScript with SQL filed select/option html

I am working on a project that has two selects in an html form. I have the first select box filled with clients and the second one I want to be filled with projects for those clients. I have a rough ...
0
votes
2answers
23 views

PHP - How to echo selected option on page when the user selects an option and is updated on change?

I have a foreach statement on my Select menu to generate options on my list. I need a why to pull the selected option to the page and tell the user what they are currently selecting. Here is my code: ...
4
votes
1answer
69 views

How to format text of option values inside of a select tag?

I have a list of table items that when a copy button is pressed, all the table items concatenate into one text box, get selected, and get put on windows clipboard. The boxes are formatted like so. ...
0
votes
1answer
22 views

font-weight doesn't work on option of select in browser except firefox

http://jsfiddle.net/GFVAB HTML code: <select> <option>first</option> <option class="light">second</option> <option class="bold">third ...
0
votes
1answer
40 views

Using href links inside <option> tag with jquery in the way

I have the following code : <div class="dropdownmenu"> <select multiple id="cd-dropdown" name="dropdown-menu" class="cd-select"> <option value="-1" ...
1
vote
2answers
51 views

Displaying an image when selecting an option from a drop down list

I'm trying to change an image upon selection of an option in a drop down list: function volvoCar() { var img = document.getElementById("image"); img.src="volvo.png"; return false; } And so on for ...
0
votes
1answer
42 views

Dropdown onchange does not change value for second dropdown [closed]

I'm learning Javascript and trying to do the following: In my first dropdown I want to show all the continents. In my second dropdown I want to show all the countries. For example: First dropdown: ...
0
votes
1answer
20 views

html option select without javascript

I've been trying to code a simple option select that would display a div under it after a selection is made. I have completed this action using javascript and I am now trying to cater the users that ...
3
votes
1answer
122 views

Option type benchmark using F#

I need to use Some/None options in heavy numerical simulations. The following micro benchmark gives me Fast = 485 and Slow = 5890. I do not like nulls and even if I liked them I cannot use null ...
0
votes
1answer
24 views

JQuery Remove Options Where id != Other Selected Option

I think this is a simple syntax problem. I have a list of states and a list of cities. Once the user selects a state, I want to use Jquery to remove all options but those in the selected state. ...
-1
votes
2answers
12 views

What is the growlnotify -c option?

If growlnotify -h: Usage: growlnotify [-hsvuwc] [-i ext] [-I filepath] [--image filepath] [-a appname] [-p priority] [-H host] [-P password] [-n name] [-A ...
0
votes
1answer
65 views

Automatically show price when we select the ID in PHP

include "config.php"; $id = $_GET['id']; $data = mysql_query("select*from orders where orderID=$id"); while ($dat = mysql_fetch_array($data)) { echo "<input type=hidden name=orderID ...
0
votes
0answers
8 views

Find and Replace Tool In Dreamweaver

Dreamweaver: How can I use Find and Replace to replace < option value="16011"> < option value="17927"> < option value="56783"> with < tr>< td> on each line leaving the stuff after the ...
0
votes
2answers
20 views

How to populate a select option with value and text

I was trying to populate a select option with this: function ListaAno(){ var lista = $("#ano"); var currentYear = (new Date).getFullYear(); var pastYear = 2000; var rangeYear = currentYear - ...
0
votes
1answer
13 views

replace constant in jquery instruction line

I have a select listbox and I want to select one of the list values when I load the page. I'm using the following approach and it works: $("#mySelect").find("option[value=3]").attr("selected",true); ...
0
votes
3answers
110 views

How to get dropdown value and show in textbox using jquery?

What I want to do is get data from drop down and pass the data to textbox here is my dropdown and textbox code <select name="criteria_title" id="chosen_a" data-placeholder="Select Category" ...
-1
votes
0answers
9 views

What is the probability of touching with options, Financial Engineering ? [closed]

anyone familiar with Option Trading or Financial Engineering ? Check out the last diagram from https://www.tradeking.com/education/options/what-is-implied-volatility. According to the diagram, ...
-2
votes
4answers
61 views

Get actual value of option tag, instead of text [closed]

I have a select element with several option elements nested, each having a unique value. Something like this: <select name="select-option" id="select-option"> <option ...
0
votes
3answers
57 views

Use css to style html select after a selection has been made

basically i am looking for an opposite of select:focus. something that would style the select from css after a selection is made. concept: select:when not focused { color:transparent; }
0
votes
0answers
34 views

Sending multiple data to PHP from select option in HTML

I want to know if we can send multiple data to php from select option in HTML ? I am looking for a value to pass in hidden within the select option tag and my select option tag is within a loop, so I ...
0
votes
1answer
47 views

Check if options exist, append them if they don't exist and set one option to “selected”

1) The following code append some options on a selected value $('#product').on('change',function(){ if($(this).val()!=='Free'){ $("#license option:selected").remove(); ...
1
vote
2answers
32 views

transparent color not working in internet explorer, how to fix?

The following code works perfectly in every other browser apart from IE 9 - the color transparent css does not work in IE - please help me sort this out.... HTML: <select class="selectElement" ...
2
votes
1answer
66 views

Icon in option - Bootstrap + Font-awsome

I am trying to embed an icon in an option from a select list. Using font-awesome icons, no icon is being displayed. <select> <option><i class="icon-camera-retro"></i> ...
0
votes
1answer
20 views

Automatic selection of options when using multiple option groups

In a form i have 2 option groups. In both option groups there are 2 options Yes or No. If in option group 1 the user choose Yes then this means the option in group 2 has to be set to No. If in ...
0
votes
0answers
27 views

bxSlider didn't recognize pagerCustom selector

I have a problem with the jQuery bxSlider V4: jQuery bxSlider V4 option: pagerCustom thumb images without a tag (<a data-slide-index="x">) thumb a tags will added with jQuery dynamically The ...
0
votes
1answer
57 views

How to echo a tree select option list PHP

Hello for 5 days i really been searching and trying, but i think i cant array the tree or i cant really understand how to echo a select box with tree format like ...
2
votes
2answers
52 views

Updating option from drop down menu

I am currently trying to update the value of my drop down menu with my script in my list.gsp. I am retrieving the start_time and end_time values from my controller in a JSON and trying to update my ...
1
vote
3answers
38 views

HTML select with transparent text after selection?

I have a HTML select with different colored background options. It works fine but I need to one little thing. The text in the dropdown options should only appear when the dropdown is open. Basically ...
0
votes
0answers
21 views

how to make one search input form with select option list target

how to make one search input form with select option to change the target or maybe the fuction of input text form i did this but did'nt work at all: <form action="/trinity/publishing" method="get" ...
0
votes
0answers
27 views

View exact java commands issued by SBT

I'm trying to integrate jrebel with an SBT project. The following entry is in the build.scala file: javaOptions ++= Seq("-javaagent:/path/to/jrebel.jar", "-Drebel.log=true", ...
0
votes
1answer
28 views

Insert values from database into select option

i want to put some fields from my database into select options. Therefore i made a function, nl showProjects. I want to show these options but my form isn't showing that values. I don't know where my ...
0
votes
1answer
19 views

Wordpress / OptionTree reference in css

I use this plugin to dynamicly change the css in a userfriendly way within the wordpress backend: http://wordpress.org/extend/plugins/option-tree/ I set it up, and appended it to the theme (not a ...
-1
votes
0answers
35 views

Manipulating option 'selected' attribute with JavaScript in a HTML select element [closed]

I need to be able to change which option has the 'selected' attribute in a select element using JavaScript. I also need to be able to trigger the 'onchange' event of the select element with a script. ...
0
votes
0answers
56 views

Nested select option in jQuery

I am trying to show a nested select option depending upon the select option that he chooses. For the first parameter it works fine but the nested below the parent isn't rendering. Here is the jsFiddle ...
-2
votes
0answers
24 views

Real-time Stock and Option data by API or download to file [closed]

I need to get real-time (or 5-30 mins delayed) stock and option data for NYSE, AMEX and NASDAQ, there are totally 7300 stocks and 65000 option contracts. I need an API to download data. it is better ...
0
votes
2answers
22 views

Alternating Select List Option Colours

My select list is generated dynamically from my database. I want to have the background colour of each item in the dropdown alternate like this example (from here): So basically, I need to ...
0
votes
0answers
16 views

libjpeg-turbo - Optimize for Speed (General/Android)

I am looking for ways to speed up the encode process by libjpeg-turbo beyond SIMD. One option I came across while reading the headers is to set dct_method = JDCT_IFAST. Are there any other tuning ...
-3
votes
0answers
21 views

How do I create a poll where users are able to submit their own option? [closed]

Almost an exact replica of the "Ask a Question" poll on Facebook. (You have to be logged in as a page to do this). I want users to be able to choose from 5 options, or type in their own option that ...
-2
votes
0answers
20 views

How do I create a poll/form where users are able to submit their own option? [closed]

I am pretty sure that this a programming question, and can be solved. Almost an exact replica of the "Ask a Question" poll on Facebook. (You have to be logged in as a page to do this). I want users to ...
0
votes
1answer
31 views

Is there CURLOPT_POSTFIELDS equivalent for GET method in CURL reqest?

What I want to do is to perform CURL request with parameters and values by using GET method but don't want to mix them before passing to curl like it is in the ...
0
votes
1answer
59 views

jquery button onclick get parent select option selected

I am trying to get the value of a parent when clicking a button: The HTML part: <td> <select> <option value='2' >Administrator</option> <option ...
1
vote
3answers
34 views

referencing multiple values inside an option element

Similar question to Can an option in SELECT tag carry multiple values? - except I want to reference the values in Javascript To recap: I want to return more than one value for a selected item in a ...
0
votes
1answer
33 views

Print or echo a selected option in php, without a form

This is a shipping module, which allows you to choose store branches for local pickup. The branches are listed in a csv, not in a database. <?php if ( ($n > 1) || ($n2 > 1) ) { ...
0
votes
0answers
29 views

Avoid select options being automatically sorted by value

I have a select element which I fill with jquery like this: $.each(myDictionary, function (key, value) { $("#ddlDepartments").append('<option value=' + key + '>' + value ...
0
votes
1answer
25 views

Option Strict On and Constant in Visual Basic?

Please forgive me, I haven't used this site very much! I am working in Visual Studio with Visual Basic. I finished programming my project with Option Strict Off, then when I turned Option Strict on, I ...
0
votes
4answers
72 views

Summing up two options

Let's say I have two optional Ints (both can be Some or None): val one : Option[Int] = Some(1) val two : Option[Int] = Some(2) My question, fine gentlemen, is the following: Are there any ...
1
vote
1answer
55 views

Disable preflight OPTION request when sending a cross domain request with custom HTTP header

I've just found out that my browser was sending an extra "OPTION" request when trying to make a cross domain ajax call with a custom http header. I presume it is called "preflight request". Is it ...
1
vote
2answers
36 views

How to select the selected option field in dropdown in php

Consider the following command: echo '', $row['name'], ''; Now how do I add the following code into the code I'm doing does not work either. if ($row['name'] =='class2' )echo " selected ";
-1
votes
1answer
19 views

2nd html option load by default

In an HTML select element, is it possible to have the second option selected by default? <select class="styled" onchange="location = this.options[this.selectedIndex].value;"> <option ...
2
votes
0answers
73 views

Product custom option type error in magento?

I am integrating web2print tools in magento 1.7.0.2. I created custom option name in admin panel..It shown front end also.I need to customized this option type in front end. but it does n`t shown in ...

1 2 3 4 5 20