An HTML user interface element for choosing one or more option(s) from a finite collection of options.

learn more… | top users | synonyms

1
vote
1answer
31 views

jQuery: Infinite scrolling Select Box

I am trying to make a better function of something I once answered here, however I'm running into a bit of a snag I don't quite understand. I wanted to be able to use "keydown" to allow a user to ...
0
votes
2answers
27 views

Can't use jQuery to change select value to option dynamically populated by ajax

Changing the value of a select option just like this, http://jsfiddle.net/ueDTd/, doesn't work if the options are populated by AJAX. This is supposed to change the option back to what it was after ...
0
votes
4answers
61 views

How to make input required if specific options are selected in a select

I'm struggling with making a input field required only if specific options are selected in a <select> list. For example: <select id="model"> <option value="model1">Model ...
-1
votes
4answers
32 views

when a value is selected in select, another select appears, if the first value is changed, the select dissapears

I'm trying find out how i can show a "select" field when a value is selected from the first "select" Lets say 1st select area <label>Transfer Type</label> <select name="type">` ...
1
vote
1answer
35 views

How can I get a ruby on rails select dropdown to automatically contain the proper information?

I have an object called a device that is associated with a customer. Once the customer orders a device, then the factory assigns the device to the customer, and the customer registers the device, and ...
-1
votes
1answer
44 views

Need a dropdown of cities filtered by country

I'm working on a site that has a profile feature, and I need to be able to provide the user with a dropdown for the city field that gets populated after a country is chosen. I was initially trying to ...
2
votes
1answer
41 views

How to validate an AngularJS directive that contains selects?

I created a directive which is made by 2 selects, that loads the options from 2 json file: http://plnkr.co/edit/7kK66c?p=preview As you can see it works fine, but I would like to put this directive ...
-3
votes
1answer
85 views

In PHP and jQuery, make one drop-down depend on another drop-down list? [duplicate]

I have two drop down lists one is depended on other if one value selected the other one load same values from database. for example if i select one country other load same cities that country. ...
0
votes
1answer
16 views

Language - automatic and by user

I´m trying to play around with languages and an own Database/CMS structure. I´ve got so far, that the Browserset language is selected. This works well. I know there are better solutions (other domains ...
-1
votes
2answers
45 views

How do I update my HTML Selects with ajax based on other Selects? [closed]

I've got this search page with 7 different Selects and 2 textfields. The data wich is stored in the selects is fetched from a MYSQL database. Now when I make a choice, I want the other selects to ...
0
votes
1answer
96 views

Looking for HTML5 <select> element CSS3 styling solution: no image files, cross-browser compatible

I am looking for styling solution to apply to HTML <select> element (i.e. web form drop-down) as described below: Pure HTML5/CSS3 implementation No any reliance on Javascript or other ...
0
votes
1answer
53 views

Showing multiple attributes for Rails drop down menu

I'm working my edit view and trying to implement a drop down box which shows multiple attributes from a model. I have an equipment model which includes an item description and an item serial number. ...
0
votes
1answer
49 views

Form_for select field, concatenating data into the display string

I am trying to use a form_for collection_select to display some select field options of account types. Its occurred to me that it would be easier for the user if they could see the price of the type ...
-1
votes
0answers
44 views

Multiple Select List not displaying on Android

I have a web app that I'm working on, but have run into something of a problem. I have a selection list that needs to display multiple lines and allow the user to select multiple things. This is ...
1
vote
1answer
31 views

How to add a domain-switching selector to International Google sites?

I am writing a Greasemonkey script to change the top-level domains of google.com. The complete code is below. Testing my code in the dev tool, it did display the choosebox and the button. But, when I ...
0
votes
1answer
34 views

Build breadcrumbs from a select box

I've never done this before. I'm trying to create something like a breadcrumb based on what is selected from a drop down list. For example if a user selects accessories from a list and then goes on to ...
0
votes
1answer
50 views

Jquery Ajax get request to separated urls in the same function

I have the following form: <p>Choose your page:</p> <form id="ChartsForm" onsubmit="return submitForm();"> <select name="accmenu" id="accmenu" style="width:300px;"> ...
3
votes
4answers
68 views

Best way (with jQuery) to check that an empty <option> is not selected

I'm using ASP.Net's drop-down helpers, and they produce HTML like this: <select id="mySelect" name="mySelect"> <option>Please Choose</option> <option value="1">Name ...
1
vote
2answers
47 views

select option default does not work

I have 3 select tags in my page and i wan to set a default value selected for them. I searched a way to do this and it works for one but does not for the other to. i cant find the problem here. I get ...
0
votes
3answers
188 views

Select List/Drop Down hover jumping with CSS3 Animations in Chrome

Perhaps I should log this as a bug with chrome, but I thought I'd check here to see if there are any solutions to the problem. I have a simple select list with an animation on the parent div ...
0
votes
2answers
114 views

Open an HTML select tag after one option has been selected

I have an HTML select tag like this: <select name="since_date"> <option value="<?php $sixmonths = date('Y-m-d', strtotime('-6 months')); echo $sixmonths; ?>">6 ...
0
votes
0answers
30 views

How to display select dropdown on rollover?

Would it be possible to display the dropdown options on select rollover using javascript/jquery? I have took a look at http://www.devcurry.com/2009/04/using-javascript-to-dropdown-html.html but the ...
0
votes
1answer
193 views

Change disabled select(dropdownlist) based on another select(dropdownlist) value

Basically what I'm trying to do is self-explanatory in the title. Here's a snippet of code which enables the dropdown/select so it can be changed via client, but it will not disable after change: ...
0
votes
0answers
24 views

HTML Select Options Display as 2 lines in IE9

Weird problem in IE9. I have a that is initially populated with about 1,800 item (we have filters to narrow the list down, but it starts out that large). In Chrome each item in the select box ...
1
vote
2answers
117 views

return a lookup table for an html select menu

Suppose in the HTML there is a select menu and I want a lookup table representing the values and descriptions in the menu. <select id="carMenu"> <option ...
2
votes
3answers
301 views

Change the background color of an html tag from a dropdown menu with jquery

So i have this select tag <select id="patient_color_id" name="patient[color_id]"> <option selected="selected" value="1">blue</option> <option value="2">yellow</option> ...
0
votes
3answers
121 views

Using php function within HTML select tag

I created a function in php, my goal with this function is to print the following line in a HTML select tag. <option value="<?php echo $key . $product[$name . '_id'] == $key ? 'selected' : null ...
0
votes
1answer
44 views

html listbox and submit to php page

I create a list like this <select multiple="multiple" style="width: 120px;" id="list" name="keywordlist" size="0"> </select> and I add item to this by jquery and every ...
0
votes
0answers
19 views

Why did positioning with BeautifulSoap doesnt work? [duplicate]

I'm using Python Mechanize to do automated jobs. Here I want to position my self on the first form tag and from a dropdown menu to select a value and submit: resp = br.open(url_manager) soup = ...
0
votes
1answer
25 views

getting error when trying to save user Select data [closed]

I am trying to save what state a user select after 'POST' the form action runs on the same page, but I keep getting unexpected T_IS_EQUAL, expecting '}' error. What am I missing? I have the ...
1
vote
3answers
63 views

Alert on value change in select

I'm trying to alert the user when the value of a select changes to a specific one, but I have multiple select in my page (one for each user). Here is what I tried: http://jsfiddle.net/mEFQq/ ...
0
votes
0answers
31 views

select box creating unknown spacing with custom fonts

I'm using a custom font-face that is loading perfectly fine within IE8. However, all my select boxes are produces random (unecessary spacing) at the top of a selected child element. I've been doing ...
1
vote
0answers
64 views

How to Disable IE10 Select Expand Button [duplicate]

I try to disable select html element style (for custom styling) using background:none; border:none; outline:none; and everything was right, but not in IE10. I can't hide terrible button with arrow ...
0
votes
2answers
143 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
votes
6answers
133 views

display a particular <div> depending on the value in <select> tag [closed]

I am building a eCommerce site, in the Payment methods I write <select name="pay_method"> <option value="0" selected="selected">Select a Payment Method</option> <option ...
0
votes
1answer
68 views

HTML Default Option in Select Using PHP Is Not Working

I'm bug-proofing a form that allows data editing for book entries in a database. Everything is working except for the drop-down box. The drop-down box automatically populates itself with every unique ...
1
vote
0answers
161 views

Possible to get Zurb Foundation 4 select drop-downs to work on mobile browsers?

I can't scroll options in a Foundation 4 select drop-down on any mobile browser. Which makes Foundation's select drop-down pretty useless. Is there a way to get it to work?
1
vote
1answer
230 views

How to shift the alignment of text in a select dropdown toward the top and left with CSS?

I'm trying to display a dropdown over top of a spreadsheet-like table with JavaScript and CSS but am having issues with the alignment. I've set all borders, margins and paddings to zero, however I ...
0
votes
1answer
264 views

angular js filter for input multiple select

I have the following dates select drop down. <input type="text" ng-modle="byNameFilter"/> <select ng-model="byDateFilter" multiple="multiple"> <option ng-repeat="date in dates" ...
0
votes
0answers
273 views

Zurb Foundation 4 select drop-down doesn't work with mobile browsers? [closed]

I love Foundation 4. Beautiful, easy, semantic and intuitive. I'm hoping I'm doing something wrong with form elements as they make no sense, particularly the select drop-downs. I've followed the ...
0
votes
0answers
34 views

MVC send html control values to controller

I have a combo box (select tag) in my view and I want to send the value of the selected item to the controller. Until now I used Html.ActionLink but its parameters are set at server side, not client ...
1
vote
1answer
102 views

Modify function which dynamically populates select elements to use arrays from db

I'm trying to modify a function that I've been using to dynamically populate <select> element to use arrays from a database. The original function used hard-coded arrays to populate the ...
0
votes
1answer
157 views

Jquery UI .sortable() trigger select sort

I am completely stuck in trying to make an ul sortable and within the update function sort the (hidden) select with the new order of the items in the ul here is my function ...
0
votes
1answer
90 views

How to select an option from the HTML select box using jQuery? [duplicate]

How do I select an option from the HTML select box using jQuery? I am using select box (single choice), not drop-down. I need to get the choice value and the text. Here is my code, but it's missing ...
-3
votes
2answers
166 views

How to update a select box based on radio button check in Javascript [closed]

When I click the "Non-technical" radio button I'd like to update the options of select box to "English", "History", "Maths". Both the radio buttons and select box are inside a form. This is my code ...
1
vote
2answers
97 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
51 views

BB10 QNXStageWebView drop down not working

I'm trying to use the QNXStageWebView control using the BB10 SDK 3.1.1 for Adobe AIR and I'm having an issue when clicking a drop down menu (HTML select tag). It does not work, when I click on the ...
0
votes
1answer
169 views

Use the onstatechange: function from the jQuery Slider Plugin in order to bind slider to select element (as in the jQueryUI Demo)

I am trying to modify the function given in the jQuery UI demos for binding a slider to an existing select element in order to work with the jQuery Slider Plugin. The function should allow the user ...
0
votes
2answers
84 views

Should I explicit specify default value for SELECT even if it is the first one

In all browsers that I know of, the first option is selected pr default in the below HTML: <select> <option>foo</option> <option>bar</option> </select> But ...
0
votes
5answers
141 views

JQuery: How to make same class option selected

My html have mutliple drop down box with same class. I am getting a value from each input box and then pass it to <select> as selector. The value i am getting is correct from input box but I am ...

1 2 3 4 5 10