You are viewing limited content. For full access, please sign in.

Question

Question

Can you control the order of Fields jumped to when hitting the TAB key in a Form?

asked on November 7, 2017

Is there a way to control which order the fields on a form are selected when pressing the TAB key on the keyboard?

0 0

Answer

SELECTED ANSWER
replied on November 7, 2017

There is currently not a built in way within Forms. Please see this feature request.

0 0

Replies

replied on November 7, 2017 Show version history

Hi Kyle,

This is possible by assigning the HTML 'tabindex' attribute to relevant fields. This page has some useful information:

http://webcheatsheet.com/html/controll_tab_order.php

You can use the following jQuery to add it to the relevant fields:

$(document).ready(function() {   
  $('.yourFieldClass input').attr('tabindex', 1);
  $('.yourFieldClass2 input').attr('tabindex', 2);
  //...
});

~Rob

2 0
replied on November 7, 2017

There is currently not a built in way within Forms. Please see this feature request.

You are not allowed to follow up in this post.

Sign in to reply to this post.