I\'m looking for a good way to display some punctuation loading \"animation\".
What I want is something like this:
This will display at second 1: \"Waiti
try this function: i'v put an example here http://jsfiddle.net/XFd39/
var i=0; function f() { if(i<=4) $('#a').append("."); i++; if(i==4){ $('#a').html(""); i=0; } setTimeout(f,500); } f();