1. Home
  2. Docs
  3. Contact Form Manager
  4. FAQ
  5. How can I change the tab index of the contact form fields?

How can I change the tab index of the contact form fields?

The tabindex is automatically applied to all fields.
If you want to change the tabindex, you can add a javascript in the form html section like
<script type=”text/javascript”>
jQuery(document).ready(function() {
jQuery(‘#id1).attr(“tabindex”xxx);
jQuery(‘#id2‘).attr(“tabindex”, xxx);
});
</script>
Here id should be replaced with the original field id.
You can find the id from source code.

A sample source code is given below.

<input class=”” type=”text” id=”yourName_6″ name=”yourName” value=”” maxlength=””>

Here the id is  ”yourName_6″

The value xxx  should be replaced with the tab index you want.
Was this article helpful to you? Yes No 2