Wijmo UI for the Web
change Event
wijmo.slider.wijslider Namespace > options type : change Event
Standard jQuery event object
The change event is triggered when the user stops moving the range handle or when a value is changed programatically.
Syntax
$(function () {
    // Set change event handler function
    $(".selector").wijslider({
        change : function (e) {
     
        }
    });
});
change = function ( 
   e : jQuery.Event
) { };

Parameters

e
Standard jQuery event object
Remarks
This event takes the event and ui arguments. please refer: http://api.jqueryui.com/slider/ Use event.originalEvent to detect if the value was changed programatically or through mouse or keyboard interaction.
See Also

Reference

options type
wijslider jQuery Widget