Questions tagged [jquery-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 for converting selected elements into sliders and is a part of the jQuery-ui library.

API Documentation

181 questions
2
votes
0 answers

jQuery UI Slider Color issue

I am trying to get a slider work with costumed background How ever it shows in my web site with out any background colour The issue is same as the link below jQuery UI Slider Range-ui Already try to added range: 'min' in my code but still not…
2
votes
1 answer

Range slider, left value always less than right value

I have range slider. I need that left value always be less than right value. For example, if i have values = [3, 4] than slider have to disable moving to state [3, 3] or [4,4]
Ozerich
  • 2,000
  • 1
  • 18
  • 25
2
votes
2 answers

How can I set a default value to a textbox that displays my jquery slider value

I have a jquery slider that has a min value of 1 and a max value of 400. when I move the slider, the corresponding value is shown on a textbox. However I want to display the minimum on pageLoad both on the text box and the slider please how can I…
Unicornese
  • 135
  • 2
  • 15
1
vote
1 answer

How to prioritize jQuery slider handle?

I have two slider handles with appended to them. Meaning sliders can be controlled by attached span as well. The code is as given: //jquery code $('#slider').slider({ values: [0, 0] var handle1 = $('#slider a.ui-slider-handle,…
user1101382
  • 157
  • 3
  • 11
1
vote
1 answer

Jquery slider allocate label words to values

This is a bit like the problem posted here: Yes or no toggle or slider - but i can't get the solution to work in this example. I have a horizontal incremental range slider which i would like to modify so that the labels are decoded to small - medium…
user1051849
  • 2,307
  • 5
  • 26
  • 43
1
vote
0 answers

jQuery - Animation content inside a div when it becomes the current container on a horizontal slider

The Setup I have a full screen horizontal slider with 5+ divs that moves to the left when you click on an anchor link. I have some basic knowledge of jquery, and did attempted to use (scrollLeft). But the div is the wrapper div is hiding over flow…
1
vote
2 answers

jquery highlight applies a ton, how to avoid it

I'm doing a website for reserving seats on a train. The form needs a calculator for the price to show the client a total amount while he/she is selecting service, quantity of passengers, etc. To make more obvious the change in the total cost I…
1
vote
1 answer

Min Max slider to form

I presently have a search module that submits as a regular html form. In it, I currently fetch an absolute minimum and maximum value for products, for example 50 and 2500. Now I need to build a slider with two buttons (to select a range) and when…
Sherif
  • 269
  • 3
  • 9
  • 19
1
vote
3 answers

Problems with jQuery slider and input

I'm trying to make my first jQuery slider, and I have this code: $("#str").keyup(function(event) { var data=$("#str").val(); if (data.length>0) { var intdata=SpecialRound(parseFloat(data)); if (intdata>=0 && intdata<=20) { …
SnackerSWE
  • 649
  • 1
  • 10
  • 19
1
vote
1 answer

jQuery Sliders Moving at the same time - out of sync by one step

I have the following code:- jQuery jQuery('.slider').each(function() { var $el = jQuery(this); $el.slider({ range: "max", min: $el.data('min'), max: $el.data('max'), value: $el.data('value'), step:…
nsilva
  • 5,184
  • 16
  • 66
  • 108
1
vote
2 answers

jQuery Slider - Moving Sliders at the same time

I have three sliders as follows:-
nsilva
  • 5,184
  • 16
  • 66
  • 108
1
vote
0 answers

bad view when refreshing

There is a problem.When im refreshing page,slide seems really bad for a while(till all files load) about 500-700ms. im using rocketslider for jquery. server side -> nginx server,varnish(cache mechanism) wordpress cdn: cloudflare (auto minify…
erginduran
  • 1,678
  • 5
  • 28
  • 51
1
vote
1 answer

jQuery Slider in a browser extension not working in firefox

I am creating a browser extension in which i am using jQuery Range2DSlider plugin v1.0.5. Slider is working if installed in Chrome but is not working in firefox. The error message showing in firefox is Warning: Argument 1 of Node.appendChild does…
1
vote
1 answer

Increase jQuery slider handle clickable area

I am looking to increase the clickable area on the jQuery slider handle. I don't, however, want to increase the visual size of the element. I don't want a giant handle. I just want to capture the click to the left and right of the handle, say by 10…
utt50
  • 155
  • 2
  • 9
1
vote
0 answers

Set Jquery slider value from JSON

I have a Jquery range slider (two values). I am trying to set the value from JSON: $.ajax({ url: '/SensorDatas/LoadSettings', type: 'GET', contentType: 'application/json;', dataType: "json", async: true, …
tomdertech
  • 497
  • 1
  • 9
  • 27
1 2
3
12 13