Hi!
I am a beginner using Jquery and like to know if it is possible to unbind a change event for the Slider UI, and then change to another callback handler.
e.g:
var slider = $("#slider");
slider.unbind('change');
slider.bind('change',funcA);
slider.unbind('change');
slider.bind('change', funcB);
I tried something like that by changing the slider change event, but it doesn't seem to be able to unbind, instead, I got a cascaded event triggers.
Hope somebody can enlightened me on this!
Thanks!