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
This can be very easy:
HTML
JQuery
setInterval(function() { var th = $('.dots'); if(th.text().length < 5){ th.text(th.text()+"."); }else{ th.text(""); } }, 500);
Demo