How can I trigger a change event on a jQuery UI slider?
I thought it would be
$(\'#slider\').trigger(\'slidechange\');
but that do
I've hit this problem recently, and used Felipe Castro's comment-solution, with a necessary change to set the context right:
$slider.slider('option', 'slide').apply($slider, [null, {value: $slider.slider('value')}])