i have a select tag
<select name="valueAA" id="valueAA">
i use UI Slider, and i need to write a function onchange of select tag, but when it changes via slider, my function doesn't work.
$("#valueAA").change(function()
{
alert("works");// doesn't work
})
can i avoid such behavior without changing the ui slider
script, and what is the explanation of such behavior?
Thanks
UPDATE
the script looks like this
$(function(){
$('select#valueAA, select#valueBB').selectToUISlider({
labels:6
});
});
where i must put thise script? (i've tried many variant:))
$( ".selector" ).bind( "slidechange", function(event, ui) {
...
});