Looping through tabs with jQuery

Hi,

I have a bunch of tabs that activate different pages of content and I’d like them to loop automatically until the user clicks on one of them.


$("#projects_list ul li a").each(function() {
	activatetab($(this));
});

So I want activatetab() to be executed every say 5000ms.

Thanks

Never mind :slight_smile: