All Questions
353 questions
0
votes
0
answers
33
views
Set value JQUERY UI Slider with LeaFlet map
im willing to modify the time value of the Leaflet TimeSlider plugin, i have this plugin that i modified so i can see in locale format.
https://github.com/carlosign/LeafletSlider-LocalTime/blob/master/...
0
votes
1
answer
102
views
Facing multiple Issues while trying to implement JQUERY UI range slider
I've to create a slider which has 2 circles, one is set to 25%(draggable) and another one is set to 100%(static). While drag once it gets 100% left circle should completely overlap to right(static) ...
1
vote
1
answer
300
views
How do you output a Coldfusion variable within jquery script?
In coldfusion I have this part of the jquery ui slider script:
$("#slider-range_sun").slider({
range: true,
min: 0,
max: 1440,
step: 15,
values: [375, 1020],
The last line ...
2
votes
2
answers
302
views
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) {
$(&...
0
votes
1
answer
296
views
UI slider isn't visible when page loads into container
I have a range slider on a page of my website that isn't visible for some reason. I can't figure out why.
The body of index.php consists of a navigation bar with 4 links and a
separate container with ...
0
votes
1
answer
181
views
How do I delegate a jQuery UI slider to the DOM?
I have this range slider using the jQuery UI API, and it worked as expected but now i'm trying to delegate the slider to the DOM and no matter what I try it doesn't work. Here is my initial code (no ...
-2
votes
1
answer
2k
views
jQuery Range Slider with fixed values and associated text output
I´m new here.. sorry for my bad English :D
I´m looking for a range slider with fixed values and additional text output.
Here is a example: http://james2013.batcave.net/s100.htm
<p>
</p>&...
0
votes
2
answers
355
views
jQuery UI slider: how do I make slider handle collisions work nicely at min/max values?
https://codepen.io/ophello/pen/BaNaPdp?editors=0010
I have a jquery.ui slider set up with two handles at once, and an offset implementation that allows them to collide and push each other.
But, if ...
0
votes
2
answers
1k
views
How do I assign jQuery slider handle values with their left or right edges, instead of their centers?
I'm playing with jQuery UI, and I've discovered something disappointing about their multi-handle slider implementation.
I've made an example for you here. I've made the handles slightly transparent ...
0
votes
1
answer
836
views
Getting Jquery-UI slider value while clicking on slider-track?
I tried to get the value of jquery-ui slider on click of slider track. But I couldn't able to get the value of slider. I'm able to get the value on slide but I couldn't able to get it on click.
<...
0
votes
0
answers
493
views
Set width of table grid in percentage bases on range slider value
I want to set the width of table column based on the range slider value using jQuery.There are multiple range slider can be seen in this Link. If the value of first range slider is 21% then the width ...
1
vote
2
answers
1k
views
jQuery UI Slider not changing default Value
I have setup a slider with jQuery UI, and the correct default value of 60 is displayed. but the slider is still on the very left. It should move to value 60.
https://i.sstatic.net/r2Xfg.jpg
Tried ...
0
votes
0
answers
269
views
How to update values in Jquery range slider
I'm using jquery range slider. I have an ajax call and I set the slider values in that ajax call. The code is as follows:
$.ajax({
type: "POST",
url: '/api/get-prices/',
data: ...
0
votes
3
answers
120
views
How to load jQuery UI all selected range (not only Min & Max) to an array
I am working on the below code. How can I load the selected range values between Min and Max into an array?
The selected.push(ui.values); is giving me the Min and Max of selected which is OK but I ...
0
votes
2
answers
878
views
JQuery Month slider is not working
I am referring this article and trying to create a month slider without range. I want to remove range from this slider as I just need a month and year. Please find below my updated code.
...