Search code examples
jqueryjquery-pluginsjquery-knob

How to display units with Jquery Knob


I'm using Jquery knob (http://anthonyterrien.com/knob/) and it works great but rather than have a dimentionless number displayed in the middle I would like to display units with it ei % or F etc ... How can I do this?


Solution

  • $("input.Measure").knob({
            min: 1
            max: 10
            stopper: true,
            readOnly: false,//if true This will Set the Knob readonly cannot click
            draw: function () {
                 $(this.i).val(this.cv + '%') //Puts a percent after values
            },
            release: function (value) {
          //Do something as you release the mouse
        }
    });