Laci Kosco

Results 13 comments of Laci Kosco

Well, IMHO the current browsers are coming with pre-loaded root + intermediate certificates for some sites. So unless you make sure you have loaded root and full-chain certificates to trusted...

what i see is that you dynamically alter configuration with trigger('configure') function. in such case, follow this statement with trigger('change') in order to initialize display ``` // ```

can you specify a bit more the condition? you are inside function that has variable named **value** passed to it. if you want for example test for positive value you...

so have you tried to use element.category in the if statement? maybe if you are passing element instead of value, you can use element.anything to work with .... maybe, just...

you code seems to be not a valid html, maybe it was just cut from some javascript code. if you use value=element, and element is object, you can hardly expect...

User trigger('configure') followed by trigger('change'); following example sets new maximum value to 10000 and ask for knob redraw; ``` $('#some-knob-element-id').trigger('configure', { 'max': 10000; }); $('#some-knob-element-id').trigger('change'); ```

how about doing it with existing knob? this is some result how to make it change the color at 70% ``` jQuery(document).ready(function ($) { //initialize all $('.knob1').knob({ 'min': 0, 'max':...

for those who love animation, have a look at http://jsfiddle.net/u76xj/1/ knob provides 0 - 100% with breaks at 25% and 75% with smooth animation lesson learned - check value at...

i would love to see somebody else implementation of full-scale colour change, but having above function to provide stepping of colour and assigning release function will do the trick for...