Questions tagged [jquery-selectbox]

Custom select box replacement inspired by jQuery UI source. Requires jQuery 1.4.x or higher.

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:
Sangram Anand
  • 10,526
  • 23
  • 70
  • 103
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 .
Gautam
  • 3,276
  • 4
  • 31
  • 53
-1
votes
1 answer

Problem in dependent country state city dropdown using jquery and php

I have 3 tables. table1: Country_id | Country ________________________ 5 | United States 6 | Russia 7 | Germany table2: state_id | state | Country_id ______________________________ 19 | California | 5 20 …
pooya
  • 45
  • 9
1 2 3
8
9