The idea is to create a progress bar but with full stops ".". So in the div, a "." gets appended every 500ms, what i wanted to do is, if the length of the div (ie. number of ".") is bigger than 3, start removing one "." at a time, then when at 0, start the process again:
setInterval(function() {
$("#load").append(".");
var length;
$('#load').each(function(){
length = $("#load").val().length;
});
if (length > 3){
$("#load").remove(".");
}
}, 500);