Would like to append rows in a small period.
Couldn't do that. :)
Maybe someone here could demonstrate that?
Would be very grateful.
Would like to append rows in a small period.
Couldn't do that. :)
Maybe someone here could demonstrate that?
Would be very grateful.
you could use window.setTimeout as described here on the mdc.
In theory, something like this:
var timer = 0;
var items = $(".item").hide().each(function() {
var el = $(this);
timer += 250;
window.setTimeout(function() {
el.show();
}, timer)
});