Custom select box replacement inspired by jQuery UI source. Requires jQuery 1.4.x or higher.
Questions tagged [jquery-selectbox]
124 questions
0
votes
1 answer
tabindex issue with custom select box
I found this script from google. But it isn't working with tabindex. can you help me how to fix this.
here is jsfiddle link
js snippt:-
$('select').each(function () {
// Cache the number of options
var $this = $(this),
…

Marmik Desai
- 104
- 11
0
votes
2 answers
Select box ID value not retreving in javascript ,html
I have 2 values in select box and i want to get their id depending on which i select on submit button click. I am showing this select box and save button in dialog box.And when i try to select value and save i am getting [object HTMLCollection]…

user3702602
- 139
- 3
- 16
0
votes
0 answers
How to send form result in ajax
Hi i have select box and submit button and depend on the submit i want to send the form result to ajax and retrieve the array result.
Here is my php code:
if($param['aktion'] == 'get-widget-news-edit')
{
$html = '
0
votes
1 answer
jQuery Selectbox issue with latest chrome
Issue with chrome 35 version
While loading drop down using jQuery Selectbox, i am facing an issue in chrome 35.
Even after minimizng the drop down, there are lot of lines remaining. On clicking somewhere else it vanishes.
The issue is not avaialble…

Manu
- 1,379
- 6
- 24
- 53
0
votes
1 answer
jQuery.validate does not validate dropdown with selectbox() javascript
I am having several drop-down in my HTML and I am using jQuery Selectbox plugin (selectbox()) for customized drop-down.
Also I need to validate the form, for which I am using jQuery.validate js.
When I apply the selectbox() like…

KAsh
- 304
- 5
- 23
0
votes
1 answer
Reset Select box when clicking on any other select boxes in jQuery
I read a few threads and they show these two codes can reset a select box.
$('#select2').change(function(){
$('#select1').prop('selectedIndex',0);
});
$('#select1').change(function(){
…

RedGiant
- 4,444
- 11
- 59
- 146
0
votes
1 answer
one select box with two functions in jQuery
I'd like to know if it's possible for a select box to have two functions.
1.Redirects automatically when selecting an option using value.
2.Load content via ajax into the closest div using data-file.
0
votes
2 answers
Creating dynamic SelectBoxs based on JSON using jquery
I can have any JSON returned from a service. Based on the JSON, I need to dynamically create SelectBoxes and fill in the values in them.
Eg-
JSON = {
"Level": [{
"Product": [{
"ID": "ID1",
"Brand": "Brand2",
…

user2093576
- 3,082
- 7
- 32
- 43
0
votes
1 answer
Select Option Change To Trigger Additional Code
Ok so I am trying to write a script that will show and hide items based on a users selection. I was able to figure out how to do this with a radio group but when it comes to a select item I just cant figure it out. Anyone have an idea what I'm…

Austin
- 1,619
- 7
- 25
- 51
0
votes
1 answer
ms-dropdown Selectbox integrated with ADD/REMOVE TR table select box didn't Work,
I have a problem with my select box. and i use ms-dropdown https://github.com/marghoobsuleman/ms-Dropdown and integrate it with my ADD/REMOVE table row.
Here's the whole jquery script.
$(document).ready(function() {
var id = 0;
…

user2593560
- 162
- 1
- 1
- 11
0
votes
1 answer
Displaying Certain Div/Answer Based on Question1
I'm using jquery selectbox and I'm trying to get the first question to determine the link that displays at the end of the set of questions. If the user selects the first answer they are directed to the first link, if they pick answer 2 then the…

Joe Bobby
- 2,803
- 10
- 40
- 59
0
votes
0 answers
jQuery SelectBox webkit (?) shadow
I have jQuery SelectBox running to re-style a select menu at top-left here: https://washington-street-originals.myshopify.com -- but am still getting shadows in webkit... what gives?

Rick Davies
- 713
- 9
- 22
0
votes
1 answer
Using jquery CascadingDropDown with jquery selectbox
How can I use jquery CascadingDropDown together with jquery selectbox ?

Veysel Ozdemir
- 675
- 7
- 12
0
votes
1 answer
Jquery keypress not firing while selectbox is open in IE
I'm trying to get selectbox to behave like a normal html selectbox. What I want is when you press a key it will jump down to the next option that starts with that letter, however, in IE while the select box is open, im unable to detect the…

ContextSwitch
- 2,830
- 6
- 35
- 51
0
votes
3 answers
Jquery Select Box not working on dynamically generated elements
I am with a problem. I am using jQuery.SelectBox for the select box and dropdowns.
It is working fine when the elements are loaded with the page load. But its not working when they are loaded by the ajax i.e on dynamicaly generated elements it is…

Yaar Mallang Jeha
- 99
- 1
- 1
- 12