jQuery-Knob icon indicating copy to clipboard operation
jQuery-Knob copied to clipboard

change input value won't trigger change

Open proclaim opened this issue 9 years ago • 3 comments

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

proclaim avatar Jun 29 '15 08:06 proclaim

+1

josenicomaia avatar Oct 21 '15 18:10 josenicomaia

Hooking into draw can be used in the meantime

    $(element).knob({
      'draw': function() {
        console.log(this.$.val());
      }
    });

onkel-dirtus avatar Nov 05 '15 22:11 onkel-dirtus

You can also hook into release.

ensonic avatar Feb 25 '16 20:02 ensonic