I'm using this plugin in my project :
https://github.com/bseth99/jquery-ui-extensions
https://raw.github.com/bseth99/jquery-ui-extensions/master/bseth99-jquery-ui.js
Manager choose this plugin based on some criteria. Basic idea behind this is demonstrated in the example :
http://bseth99.github.com/jquery-ui-extensions/tests/visual/slidespinner/value.html
So user slides right left and the value changes. The issue I currently have with this plugin is that it doesn't fire any kind of change event, when I slide the slider in any direction.
But it works properly, the value in the input changes. But if I try :
$(document).on("input", "change", function(){
alert("something");
});
Naturally it doesn't fire. So my question is, what would be next thing to try? Can I create some kind of observer that fires when this value is changed on document ready or something else?