what is it possible to press tab key every automatically every 5 second on web page load.
$('.tg').bind('keypress', function(event) {
if(event.which === 38) {
var nextItem = $(this).next('.tg');
if( nextItem.size() === 0 ) {
nextItem = $('.tg').eq(0);
}
nextItem.focus();
}
});