jquery-ui-slider Questions
4
Solved
I have a jQuery UI slider:
$('div.slider').slider({
range: true,
step: 250,
min: 1000,
max: 500000,
values: [1000,500000],
change: function(event, ui){
console.log($(this).slider('values', ...
Buzzell asked 2/2, 2012 at 22:47
1
Solved
I'm using a jQuery slider with a fixed minimum of 20, as described in the docs.
However, it's not quite what I need. I'd like the visual range of the slider to be 0-100, but the user should never ...
Salvador asked 18/7, 2012 at 16:20
1
Solved
I am working with jQuery UI slider.
Here is the code i am using:
$(function() {
$( "#slider" ).slider({
value:1,
min: 0,
max: 5,
step: 1,
slide: function( event, ui ) {
$( "#a...
Prologue asked 5/7, 2012 at 7:24
3
Solved
I've made a slider with query/slider and styled it with css. ( http://jsfiddle.net/9qwmX/ )
I succeeded to put the selected value into a div container; but now I want the container to 'travel' wit...
Allegiance asked 19/6, 2012 at 11:12
1
Solved
I got a slider that is used as a time-line in my music player. The min value is 0 and the max vlaue is the song length (in seconds). Each second (I do this with a timer), the slider moves and the v...
Digitigrade asked 21/4, 2012 at 0:14
1
Solved
I have a stepped slider, with non-linear steps -
code:
$(function() {
var trueValues = [5, 10, 20, 50, 100, 150];
var values = [10, 20, 30, 40, 60, 100];
var slider = $("#parkSlider").slider(...
Calciferol asked 27/12, 2011 at 16:19
1
Solved
I want to change the width and height of jquery slider UI. I am using ui-lightness theme. I tried to override the default jquery.css by adding the following code in my style sheet.
.ui-slider .ui-...
Kaleighkalends asked 7/12, 2011 at 15:35
1
Solved
I'm trying to add control buttons on to the jQuery UI slider but can't get it to work.
Can anyone see what im doing wrong here:
$(function() {
var gmin = 1;
var gmax = 500;
$( "#slider" ).sl...
Jecho asked 25/11, 2011 at 15:13
1
Solved
We have a ui slider we utilise, and it works flawlessly.
code:
jQuery(function() {
jQuery( "#slider-range-min" ).slider({
range: "min",
value: 1,
step: 1000,
min: 0,
max: 5000000,
slide: fu...
Gorilla asked 23/9, 2011 at 3:14
1
Solved
i'm trying to replicate what you can see in the image here in jquery to make a touch enabled version of an existing application:
I'm using jquery-ui sliders and i'd like to keep using them becaus...
Infant asked 13/6, 2011 at 13:38
1
Please take a look at the Cheese & Burger website.
More accurately, take a look at the slider down the bottom's relationship with the flip panels above.
I know I could skin jQuery UI Slider t...
Cattish asked 3/9, 2010 at 4:30
© 2022 - 2024 — McMap. All rights reserved.