Custom select box replacement inspired by jQuery UI source. Requires jQuery 1.4.x or higher.
Questions tagged [jquery-selectbox]
124 questions
0
votes
3 answers
how to get the selected text value using this in jQuery
I need to get the selected option text in jQuery of a select box.I used
$('#selectId :selected').text();
It is working fine for me.But how i can do this with following.Here i am iterating all
select boxes which have a particular class.I…

PSR
- 39,804
- 41
- 111
- 151
0
votes
1 answer
How to forcibly call .change function in jQuery
I have the following code:
$("select#sel_mode").change(function(){
if ($(this).val() == "N" || $(this).val() == "Y"){
$("table#options").hide();
} else {
$("table#options").show();
if ($(this).val() == "C"){
…

Pavel Zdarov
- 2,347
- 3
- 15
- 23
0
votes
1 answer
jquery custom selectboxes - width and height issue
I'm using the script jQuery custom selectboxes (current version: 0.6.1) from this site:
http://info.wsisiz.edu.pl/~suszynsk/jQuery/demos/jquery-selectbox/
My problem is, that the width and height of the class "jquery-selectbox-list…

EM Em
- 270
- 1
- 3
- 17
0
votes
1 answer
Auto Open select box options on page load jquery mobile
On jquery mobile, how can I auto open the select box when page loads? Like in this sample:
My code:
0
votes
1 answer
JQuery Mobile Select box population not working?
I have two select boxes called crop and variety.The variety select box loaded via Ajax depends on the selection of crop and then rendered to JQueryMobile,its working when directly run that page,but incase of redirect into that page from another…

Jishin
- 113
- 2
- 5
- 12
0
votes
1 answer
radio btn selection will show select list or text field, then that value querys and displays in another text field
I have a form that when selecting the radio button it will query a database and populate either a select list or change select to a textbox for user input.(mostly working - won't go back to select after textbox - not as important now)
Then I want it…

Bodine
- 39
- 1
- 9
0
votes
1 answer
CSS/Jquery selectbox - selected option cannot align left?
I have been going crazy trying to get the selected option to align left like all the dropdown options.
I have inserted 'text-align:left;' in every css option but to no avail.
I have decided the javascript code must be doing something to the…

Rodney
- 514
- 1
- 9
- 27
0
votes
1 answer
Jquery Select box values using Struts2 UI tags
In a jsp page i have a select Input which gets the values from a Struts2 action, and i am using Struts2 iterator tag to get the values.
0
votes
1 answer
if select option blank, then select option 3
Thank you in advance for anyone who helps on this one.
We have a drop down with a blank option in the first .
0
votes
1 answer
jquery dropdown selected text padding asp.net
Im using jquery dropdown selectbox from http://www.misfitgeek.com/2011/04/jquery-styled-dropdownlist/
its working fine except i dont know how to set padding-left: 20px; of selected text
selected text is extremely left im using round corner…

skhurams
- 2,133
- 7
- 45
- 82
0
votes
2 answers
Rewrite select option value to exclude specific array segments
This pertains to my question yesterday, which was answered perfectly here by @iambriansreed.
In trying to take it one step further, my brain short-circuited. Plus, the jquery api site is down.
I have two select boxes; certain options in the second…

dilettante
- 381
- 1
- 4
- 19
0
votes
1 answer
Dependent selectbox issue
I am trying to make two dependent select-boxes. There are two same select-boxes and the first selection hides the other one when it is selected, like this:
1st select-box
Option one
Option two (selected)
Option three
2nd select-box
…

kubilai
- 3
- 1
-1
votes
3 answers
jquery selectbox : Reload Jquery Selectbox with other drop down values if last option is selected
How can I refresh jquery multiselect when the last option is selected with new values?
Like I have the below options in my selectbox
-1
votes
1 answer