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.