The slider with latest jquery seems to position using percentages. I am positioning it with pixels for start and end position. I have to do this because of margin that needs to be put around the scroll whose width is half of slider handle. Anyway, the solution works just fine in IE and Firefox. When I use Chrome I realized whenever I click on scrollable in the end zones(start and end) and then the center zone of the scroll section, slider moves unpredictably. Only thing I see here is this is happening when the position:left value changes from percentage value to pixel value. I might be wrong, I would like to know your thoughts or if you encountered this issue and resolution. Again the issue is just with Chrome browser.
My trial is very similar to one seen on
http://www.ericdubois.com/jquery_tests/slider_gallery.phpwith the exception that in the function call for
$("span.start").click(function(){
the website has use of
$(".sliderGallery .slider").slider('value', elValue);
but i am using
$(".ui-slider-handle").animate({'left' : 0 }, 500);
Why should that be an issue? All we are tying to move is "ui-slider-handle" but my attempt doesn't work on Chrome.