i want auto play for my tabs.
please check
http://jsfiddle.net/w3father/KQN3z/
$('#tabs > a').click(function() {
var tab = $('.tab_' + $(this).attr('tab'));
if (tab.length)
{
// Hide active tab & selected style:
$('.tab_active').removeClass('tab_active');
$('#tabs .active').removeClass('active');
// Show clicked tab content
tab.addClass('tab_active');
$(this).addClass('active');
tab.show("slide", { direction: "down" }, 1000);
$(this).show("puff", {}, 10);
}
});
http://jsfiddle.net/karim79/KQN3z/5/