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
1
vote
0 answers

GLFX plugin delay in slider when multiple filter applies

I want to use multiple Jquery slider for multiple filters, "Brightness / Contrast", "Denoise ", "Triangle Blur". GLFX plugin But applying filter is done with delay (about 1s) when the slide is fired. this is my code : window.onload = function ()…
user3748973
  • 449
  • 2
  • 8
  • 24
1
vote
2 answers

make Jquery Slider autoplay

I am making a jquery slider. code is $(document).ready(function(){ var currentPosition = 0; var slideWidth = 560; var slides = $('.slide'); var numberOfSlides = slides.length; // Remove scrollbar in JS …
Ankur Gupta
  • 933
  • 3
  • 15
  • 27
1
vote
1 answer

JQuery slider fill colour

I am trying to fill the current range portion of my slider bar - and as a lot of other people have - fallen into a pit! For some reason when I move my bar - the portion does not 'fill' with a colour as expected. This is my markup : …
RenegadeAndy
  • 5,440
  • 18
  • 70
  • 130
1
vote
1 answer

jQuery UI slider and textbox value 2-way update

I'm trying to implement the jQuery slider, which seems to be going ok, however, I'm not a javascript guy and as such I'm struggling to make the next step. I have a slider and a visible textbox. What I want to do is update the textbox from the slider…
dotnetnoob
  • 10,783
  • 20
  • 57
  • 103
1
vote
0 answers

Parse XML into a Slider from a URL - Volusion

We are currently trying to implement a slider into the e-commerce software Volusion. We would like to be able to port in several products including their name, price and picture dynamically as we want the information to change if a price changes. I…
devans1214
  • 41
  • 5
1
vote
1 answer

add handlers to Jquery UI slider

Is there a way to add handler to UI slider after initialization? now i do: var values = [0,50,100]; sliderbox.slider({ values : values, min : 0, max : 100 }); but sliderbox.slider( "option", "values", [ 0, 50,75,100 ] ); not works as…
folibis
  • 12,048
  • 6
  • 54
  • 97
1
vote
1 answer

Get id of Jquery Object (this ) in a js file?

I am working with content carousel slider. I am having a js file for the same and I just need to call function from my html file. Everything runs fine till now. But now I want to use the same slider twice in my page so to avoid conflicts between…
Hiral Vadodaria
  • 19,158
  • 5
  • 39
  • 56
1
vote
1 answer

jQuery dynamic div slider

For some reason I am having a lot of trouble finding this... Basically looking for a jquery slider plugin (with next and previous button), where the content can be any thing (div's,text, images, a combination,etc). The problem comes that I the…
Ahmed-Anas
  • 5,471
  • 9
  • 50
  • 72
1
vote
1 answer

Limit jQueryUI Slider to go below an amount

I need to "freeze" the slider if user selects something from the checkboxes. My code is as follows: $('#slider').slider({ range: 'min', value: 20, min: 0, max: 500, slide: function(event,…
Tomek Buszewski
  • 7,659
  • 14
  • 67
  • 112
1
vote
1 answer

jQuery mobile slider disabled without being greyed out

I want to have a jQuery mobile slider which cannot be dragged but does not appear greyed out. That is, I want the functionality of: With the look of this:
jaynp
  • 3,275
  • 4
  • 30
  • 43
1
vote
1 answer

Add autoplay to jQuery slideshow

Currently I have four pages that are full-width landing pages. I would like to add funcionality that will enable auto play. This will change the functionality to be more like a slideshow and less like static landing pages. My current navigation for…
1
vote
1 answer

Jquery Stop Propagation not working

I have an image slider on my page. I want to code a previous and next button. I believe the code I have is correct but for some reason event.stopPropagation is not working.
psycho
  • 1,539
  • 4
  • 20
  • 36
1
vote
1 answer

Customized slider handle snapping to cursor?

I'm using a completely ordinary jQuery slider whose handle I narrowed using the following CSS: html body .ui-slider .ui-slider-handle { width: 10px; } This has the desired effect of narrowing the slider handle, but it has the unwanted side…
temporary_user_name
  • 35,956
  • 47
  • 141
  • 220
1
vote
1 answer

jQuery dynamic slider

Any idea why this won't work? What I'm trying to do is add some div tags dynamically and then apply them with a slider. $(function () { var testarea = $('
'); for (var i = 0; i < 3; i++) { …
fes
  • 2,465
  • 11
  • 40
  • 56
1
vote
1 answer

jquery custom scrollbars in slider example

I'm trying out a sample jquery from here: http://jqueryui.com/slider/#side-scroll I copied the source code at "view source" and when I run it, it looks pretty much the same, but it is showing the native scrollbar instead of the custom scrollbar…
Vjeetje
  • 5,314
  • 5
  • 35
  • 57