Tagged Questions
1
vote
0answers
77 views
Flexslider Carousel: Selectbox inside breaks it all on iPad 1 and iPhone 4
I got the following problem:
When a selectbox is placed inside a flexslider carousel and I open the select-dialog on iPad 1 (iOS 4.3.3) or iPhone 4 (iOs 4.3.5), all content from the slider is ...
0
votes
1answer
62 views
unable to change option of a select menu with custom select event handler
in the following call function onSelectEvent: is responsible for handling & switching the option. i'm trying to get the option value through this variable but this variable in call function ...
1
vote
5answers
124 views
.change(function() { doesn't alert an option value after changing options of select menu
the following call function doesn't alert an option value after changing options of select menu:
doesn't give alert:
<script type="text/javascript">
jQuery(document).ready(function($){
...
1
vote
0answers
89 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
3answers
143 views
JQuery Mobile - Getting the Value of a SelectMenu
When I attempt to get the value from my the select menu, I get an empty value.
I know the reason I do is that the jquery mobile markup results in two items with a class of "mySelect"-- so the ...
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+"' ...
0
votes
1answer
166 views
jQuery mobile: Why does Select Menu break when I append it to another DOM node on a different page?
I have a jquery mobile site with three pages (<div data-role = 'page'>).
On page 1's header I have a Select Menu being used for a Choose Language component:
<div data-role = 'header'> ...
1
vote
3answers
139 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 ...
1
vote
1answer
261 views
JQuery UI selectmenu not styling
Bit of a daft question but I've downloaded the JqueryUI selectmenu widget and it isn't working even though Firebug shows the relevant CSS and JavaScript files being loaded.
Script on page:
...
0
votes
0answers
308 views
Jquery Mobile and Android 4.1 Native select menu issue
I have an Android app using Jquery Mobile. I have tested my app on Android 3.0 and above.
Everything works fine, but on Android 4.1 Jelly Bean, I have a problem when I click on the HTML Select Tag.
I ...
0
votes
0answers
196 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
225 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, ...
1
vote
1answer
306 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
289 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 ...
2
votes
3answers
1k views
How to change page using Jquery mobile select menu?
I am developing an app where i am using select menu in it. As i am new to developing i don't know how to change page when select menu was selected. I tried onclick events & onchange events on ...
0
votes
1answer
534 views
Opera Mobile and jQuery Mobile Select menus display bug
There is a bug in jQuery mobile with Opera Mobile which displays the default select over the custom one from jQuery Mobile, see the screenshot below directly taken from jQuery Mobile's website!
...
0
votes
1answer
153 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
2answers
359 views
Unable to get mouseout to work properly on jquery Selectmenu
I'm trying to get the Jquery Selectmenu plugin to expand when I mouse over but close again when I leave it.
I decided to use the MouseOver and MouseOut events along with the open and close commands.
...
0
votes
0answers
134 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
3answers
2k views
jquery selectMenu refresh doesn't work
I have a selectMenu that I initialized and later I want to populate it with some data:
$.each(data, function (Key, Value) {
$('#ddlReportFarms').append($("<option></option>")
...
0
votes
1answer
404 views
Jquery selectMenu creates line break (can't get it to display inline)
I have a few select elements:
<div id="divReports">
<select id="ddlReportTypes" style="width:200px;"></select>
<select id="ddlReportFarms" style="width:200px;"></select> ...
3
votes
2answers
961 views
Jquery selectMenu hide?
I'm using jquery's selectMenu on a select tag like this.
$('#ddlReport').selectmenu()
in certain cases I want to hide it, and I can't figure out how.
this doesn't work:
...
0
votes
1answer
346 views
dynamic jquery ui selectmenu not styling
I am using multiple select menu's using http://wiki.jqueryui.com/w/page/12138056/Selectmenu . They work great when initialized with the page but dynamic select menu's do not style and look like ...
0
votes
1answer
156 views
select menu that filters a table by rows
Can anyone take a look my fiddle and let me know where i'm going wrong? I just want to check the second column in the table, and if it contains any of the words in the select menu that is chosen, it ...
3
votes
1answer
6k views
jQuery UI Selectmenu value set dynamically does not change visible selected value
I am using jQuery UI Selectmenu and am having trouble setting the value of a rendered selected. It seems to change the selected option in the underlying select, but the selectmenu does not show the ...
1
vote
1answer
1k views
JQuery selectmenu won't initialize after ajax call
I am using filamentgroup JQuery selectmenu widget. The widget is initialized in page's head section. When the page is loaded for the first time Jquery loads widget successfully but after ajax call ...
0
votes
0answers
166 views
select menu not opening after using CSS switcher
So I have a css switcher with cookies support. Problem is that when I switch style and refresh the page the jquery ui select menu does not open anymore. This thing happens only for the text formatting ...
0
votes
1answer
2k views
jQuery UI Selectmenu events bind
Im using JQuery UI Selectmenu widget - http://wiki.jqueryui.com/w/page/12138056/Selectmenu
Im trying to bind change event. But it does not work:
$(function() {
$('select#items').selectmenu();
...
1
vote
3answers
1k views
jquery ui selectmenu, regarding changing selected items
I'm trying to implement a currencty converter which I succeeded but now I'm implementing a button that will change the selected option between two selected menus which means that if in the first menu ...
1
vote
2answers
633 views
Jquery SelectMenu breaks after closing SimpleModal
When I close and reopen a simplemodal the selectmenu no longer works.
Anyone had any experiences with this or know how to fix it?
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
...
1
vote
1answer
589 views
Custom Select Menu, jQuery Not Working
I am trying to replicate the functionality of a standard select menu by making a custom one.
The problem is that I can't get it to behave like a select menu. My goal is to be able to replace the ...
0
votes
1answer
362 views
jquery ui selectmenu + jscrollpane trouble
Here is some problem when i using "jquery ui selectmenu" and "jscrollpane" together.
Mousewheel works good, but if i click to scrollpane (".jspDrag") here is sticky mouse.
You can see on link below: ...
0
votes
2answers
119 views
Submitting select menus
I use a code in jquery-mobile to dynamically generate select menus, but I'm having trouble passing the data to the database.
The menus are generated using the append method, for each form element, ...
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 ...
0
votes
2answers
294 views
jQuery - Click a link to choose a select menu option
I have a select menu in my form that I want to hide and replace with an unordered list. I've figured out how to copy the select options to links within list items, but I can't figure out how to make ...
1
vote
1answer
990 views
jQuery selectmenu plugin value
I'm using the jQuery UI Selectmenu Plugin for styling my select fields. Now I have a general question to bring this code $(this).val() to work with this plugin. After the onChange event it should me ...
0
votes
1answer
1k views
Help with jquery-ui-autocomplete select menu height
I am working with jQuery and the ui-autocomplete in a Rails project. Right now when the autocomplete renders, it will open a drop down and display suggestions, but the drop down menu goes below the ...
