Tagged Questions
1
vote
0answers
113 views
redirecting to google translation onchange of options of a cloned select menu (ScrollectBox)
i'm trying to integrate google translation using the following plugin:
https://github.com/afEkenholm/ScrollectBox
https://github.com/afEkenholm/ScrollectBox/blob/master/index.html
...
0
votes
0answers
51 views
Dynamically change content
I have some dynamically created content in my code.
for (var i = 0; i < len; i++) {
htmlString += (i+1)+'. ';
htmlString += "<input id='Xcoom"+i+"' ...
1
vote
3answers
147 views
jQuery selectmenu - multiple menus, reset value of others when one is changed?
I am using the selectmenu plugin to style up some select menus on my site. I am using them for a filtering feature on my site. I want the user to only be able to filter by one menu at a time. So when ...
0
votes
1answer
310 views
Jquerymobile - creating select menu using javascript
I am trying to create and android app using jquerymobile and cordova 2.0.0. I am planning to add localStorage which will save settings of app to android storage. Right now I am trying to force my ...
0
votes
0answers
203 views
Jquery select box not reloading data
I am using the following jQuery multiselect script on the select boxes on my website, the problem is when you reload a record from the mysql database the jquery script doesn't reload the select ...
0
votes
1answer
248 views
Escape HTML “value” attribute for a select menu
I have a select menu and I dynamically insert some values from a database:
markup += '<option value=' + option["value"] + '>' + option["alias"] + '</option>';
some values, however, ...
2
votes
5answers
1k views
How to select from option menu in javascript
I need to be able to change certain option from select menu to be as default (start) value when I do something.
For example when I declare it, English language is default value.
How to change that ...
1
vote
1answer
328 views
jQuery UI chained select-menu. Form resets when button is clicked
I am using a chained select-menu to guide the visitor trough some questions. This works like a charm, however, in the end the user has to click a button to send all values to a PHP-script. This also ...
0
votes
0answers
295 views
jquery ui selectmenu scrollbar not working
I use jquery selectmenu plugin. I have initialized select with
$('select').selectmenu({width:100, maxHeight:300, style: 'dropdown'});
I have many options and this causes to appear default ...
0
votes
1answer
400 views
jQuery Mobile: single choice select menu values interfering with handler for multiple choice menu
I am creating a jQuery Mobile page that has two select menu's, one is multiple choice, the other is single choice. The multiple choice menu is set to trigger a handler function which loops though the ...
0
votes
1answer
156 views
how specify select function foreach option in UI selectmenu
I'm using UI Selectmenu in my project
UI selectmenu has a select option to set select behavior for all selectmenu options like :
$('.anything').
selectmenu({
select : function(event, ...
0
votes
0answers
138 views
Troubled by Javascript when using Jquery UI and Selectmenu
I'm really new to web programming so I know next to nothing about javascript or jquery.
I've been successful in using some of it but I do not fully understand it (which I hate, I wan't to understand ...
0
votes
2answers
2k views
selectmenu ('refresh', true)
I get form from zend framework site and put it in response in new file in function written by jquery mobile, but I get this error:
uncaught exception: cannot call methods on selectmenu prior to
...
0
votes
2answers
2k views
jQuery Mobile Select Menu Data Binding
The code at the bottom of the page dynamically populates a jQuery Mobile select menu. In addition to populating the menu I'd like to bind data to each menu item and assign a click handler. This is ...
0
votes
1answer
593 views
jQuery selectmenu not working with knockout.js when embedded inside a 'visible' binding
I have a jsfiddle that demonstrates the problem at: http://jsfiddle.net/michaelajohnsonwa/sDchM/7/
The generated dropdown elements from the select when hidden don't seem to be generated correctly. I ...
0
votes
1answer
72 views
Multiple selectmenu one datasource
Looking for a jQuery based selectmenu, which uses a central datasource so I don't have to include the country options 500 times on the page, just once. Does anything handy like this exists in the ...
1
vote
8answers
984 views
How to get the index of an option in a select menu by matching the text with plain Javascript?
I have a select menu and I need to dynamically select the option based on the text value of the option element. For example, my select looks like this:
<select id="names">
<option ...
0
votes
3answers
4k views
Setting a default selection in a select menu in JQuery Mobile?
I'm trying to set the default selection in a select menu in JQuery mobile. The docs have this:
var myselect = $("select#foo");
myselect[0].selectedIndex = 3;
myselect.selectmenu("refresh");
...
