I am using this JQuery gauge.
I am trying to create some sort of set animation, so i.e. 100 then after 300ms show 97, then after 200ms show 110, etc.
I would like to be totally undependable on that input field (it would be thrown out at one point), So how would I able to just use an array of set numbers with a constant delay where the animation plays out the speed based on the numbers in the array and delaying after each number by the delay constant (let's say 300ms.)
Thanks.
I've tried to select the element and apply a set value like this: $("#myValues").myfunc({divFact:20,eventListenerType:'keyup'}).val(100), but it just places the number there with no result, it's using eventListenerType:'keyup' and my val function is def. not sending a keyup after the 100.