Tagged Questions
1
vote
2answers
24 views
How to turn off .animate() on a certain element
I'm using http://tutorialzine.com/2011/12/countdown-jquery/ which animates the numbers down and fades to opacity 0.
Edit. Added jsFiddle http://jsfiddle.net/Mw4j2/
// The .static class is ...
0
votes
3answers
2k views
Animated numbers (semi-countdown) with JQuery?
I am trying to make a numerical value, say 5000, quickly change to another value, say 4000, using JQuery. Right now I do this fine using:
mod(".class",4000,"add");
function mod(id,value,type){
...