I have problem with jQuery.knob I need to add a Sufixx to the value in the knob.
For Example: i need a Sufix $ after the value, i just
jQuery(document).ready(function($){ $('.ksta').knob({ 'min':0, 'max':100, 'step': 1, 'readOnly': false, 'data-linecap': 'round' }); $('.ksta').each(function(e){ $(this).val($(this).val()+'$'); }); });
http://jsfiddle.net/DWvsh/6/