slider not returning value in ui.value

slider not returning value in ui.value


I am using
http://www.filamentgroup.com/lab/update_jquery_ui_16_slider_from_a_select_element/
However, when using the stop or change event, the slider does not hold
the ui.value. When using the slide event it does have it, but the
slide event is already used by the filament group code (to update the
select element), and I don't want to mess with that.
My code is very straightforward
    $(function(){
        var opts = {labels:10, tooltip:false, sliderOptions: {stop:function
(e, ui) {
            console.log(ui.value);
            }}};
        $('#frmExtendedContact select').each(function(){$
(this).selectToUISlider(opts)});
    });
The value shown is always 0.