jQuery-Knob
jQuery-Knob copied to clipboard
change input value won't trigger change
manually change the input value will not trigger the change event, only when rotating the file will trigger. Or is there something that I missed?
http://jsbin.com/matutunagu/edit?html,js,console,output
+1
Hooking into draw
can be used in the meantime
$(element).knob({
'draw': function() {
console.log(this.$.val());
}
});
You can also hook into release
.