jQuery-Knob
jQuery-Knob copied to clipboard
Browser caching issue on value update
I am using the knob library to display a value as a percentage of 100. Whenever the value changes, I need to do a hard refresh of my browser to view the change in the knob. Is there a way to make the library bypass browser caching of the canvas element?
Are you using <input> elements? It could be an issue with you browser caching input values (form autofilling). Try adding autocomplete="off" on your form/input to see if it helps.
Thanks, I'll give it a shot!