How to repeat a single callback on interval?

Compact syntax with timing methods:

1
$.repeat(interval, function(){  });

Compare this to the old way with more syntactic fluff:

1
setInterval(function(){  }, interval);

Similar patterns with callbacks

Similar patterns with intervals

Similar patterns with open loops

Similar patterns with sequential loops