I have a jQuery UI slider here.
I have animate attribues value as "true". When I place my mouse pointer somewhere on the bar and click there, it is giving a slide visual effect. But if I drag the slider pointer to a different point, I am not getting the animated slide effect which I got in the other case. It looks like its jumping from one point to another. Is there any way I can have the slide effect here too ?
Below is my script:
$(function(){
$('#slider').slider({
animate: true,
step:1,
min:0,
max:5
});
});