2

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();
  }
});
guest271314
  • 1
  • 15
  • 104
  • 177
PRATEEK
  • 21
  • 1
  • Similar to https://stackoverflow.com/questions/832059/definitive-way-to-trigger-keypress-events-with-jquery – Avraham Mar 17 '19 at 09:26

0 Answers0