I am using the jQuery UI slider from Filament group where it will convert a SELECT element to the slider. It works fine. Now I want to programmatically move the slider handler to a particular point in the slider scale using JavaScript.
Ex: When I click on a button, it will call a JavaScript function and inside that I want to write the piece of code which will move the slider pointer to a specific tic/slider point in the scale.
I have my sample application here:
$(function(){
$('#speed').selectToUISlider();
//fix color
//fixToolTipColor();
});
function Move()
{
// How do i move to "Slow" point ?
}