Questions tagged [jquery-ui-slider]

The jQuery UI Slider plugin makes selected elements into sliders. There are various options such as multiple handles, and ranges. The handle can be moved with the mouse or the arrow keys.

Slider is a widget that is a part of the library.

API Documentation

685 questions
2
votes
1 answer

jQuery mobile data role slider doesn't work

I am using latest jQuery mobile 1.0.1 and I am using data-role=slider on my second page which load after the transition from first page. This data-role slider doesn't seems to work on second page. When I run that page independently then it works but…
2
votes
1 answer

jQuery UI slider - doesn't work on IE if developer tools isn't activated

I have a really strange problem. I'm using jQuery 1.7.1 and UI 1.8.17 for a slider. It works like charm on Chrome, Safari and FF (as long as you don't oben firebug...). So far so good, BUT! It doesn't work on IE (tested with IE 8 & 9). However, as…
2
votes
2 answers

reset jquery slider

How can I reset jquery slider so it as set default values as calls all callback methods like slide etc? $('#value-slider').slider({ min: 1000, max: 20000000, values: [ 1, 20000000 ], step: 1000, range: true, slide:…
Oleksandr IY
  • 2,783
  • 6
  • 32
  • 53
2
votes
1 answer

Increasing and Decreasing UI slider value by PLUS and MINUS sign

I am trying to change the value of slider by clicking on + and - sign sitting beside the ui slider as following: http://jsfiddle.net/Behseini/NCNA7/50 I tried to add a function like this $(.PLUS).click(function(){ slide: function(event, ui) { var…
Behseini
  • 6,066
  • 23
  • 78
  • 125
2
votes
1 answer

how to save a jquery slider's selected value

Does any one know how I can save a slider's value in the database? I would like to save the slider's position when the user stops sliding. I have no problem get the value on the client side but I need to save the selected slider value in the…
netNewBee
  • 31
  • 4
2
votes
2 answers

UI Slider adding textbox values

Hope someone can help me, I am new to Jquery and this is the only thing I am still struggeling with. I have a slider with 3 textboxes, when sliding the slider it will auto populate the values to all three textboxes. I want the fourth textbox to add…
Nicky
  • 21
  • 2
2
votes
2 answers

jQuery Range Slider using default attribute values

I am using jquery Range Slider which has the following code. $("#maxAge").slider({ range: true, min: 18, max: 75, values: [20, 45], slide: function(event, ui) { $("#sliderVal").val(ui.values[0] + "-" + ui.values[1]); …
Mr. Crypto
  • 39
  • 5
2
votes
1 answer

jQuery UI Slider Incorrect Value

I'm creating a web page that allows users to select a value using the jQuery UI Slider. However, I would like to update the values as the user is scrolling, so I attached a update_value function to the sliders slide event. The issue is that when the…
Jibran
  • 920
  • 9
  • 25
2
votes
1 answer

My animation is not working in this slider which I made using html, css, js

This is what I tried!, tried to integrate two slider designs mentioned below. The gesture animation which is there in the 1st link is not working in my…
Samyak Jain
  • 90
  • 12
2
votes
1 answer

jquery ui- (slider) custom event binding not working

I have a bit of a problem working out why my custom event does not trigger and work correctly... My custom event should be attached to each column, how can I get the slider to be bound to only one column (cols object below)? With my current code if…
Haroon
  • 3,402
  • 6
  • 43
  • 74
2
votes
5 answers

jquery-ui slider handle finish position is 100% left - placing it outside the slider

I am using jQuery-ui slider for the first time and am confused by a rather basic issue. When setting my slider, I wish to do so without using a theme. When I slide from left to right, the right hand position of the slider handle steps 1 handle width…
Ant
  • 43
  • 2
  • 8
2
votes
1 answer

The arrow buttons of Menucool jQuery Slider don't work properly

I placed individual images from my computer within the li secton of the html. My plan was to have multiple slider images within one slider and to manually press the arrow buttons to proceed to the next group of images. I have researched and gathered…
B.C
  • 57
  • 1
  • 6
2
votes
1 answer

How to Add Custom Increment and decrements Counter in jQuery Ui Slider

I am trying to increase the width of an element (.inner) using jQuery Ui slider. This is somehow working fine but I need to keep the center of the inner always in the center of .wrapper. so I think I need to add negative values for top and left but…
Behseini
  • 6,066
  • 23
  • 78
  • 125
2
votes
1 answer

jQuery UI Slider Steps

I have a jquery UI slider and I have noticed that if the difference between max and min value is not an exact multiple of step option the slider doesn't works correctly. For example: min: 6900 max: 79900 step: 1500 When I move the max cursor, the…
Alfra
  • 165
  • 12
2
votes
0 answers

AngularJS -- RZSlider update stepsArray

I'm trying to edit the rz-slider's labels that appear below the ticks. I am able to obtain the values and everything but if I try to update the stepsArray to the rzslider, it is not being updated. I couldn't find anything on how to update the legend…
NcDreamy
  • 785
  • 6
  • 14