Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6882669
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T05:17:01+00:00 2026-05-27T05:17:01+00:00

I have an issue i am trying to modify a form’s tab order which

  • 0

I have an issue i am trying to modify a form’s tab order which the HTML is out of my control, so i need to modify the code with JQuery to make the form tab in a way that i want.

here is the html code i cant change:

<div class="form1">
    <label>First Name</label>
    <input id="field1" class="field1" type="text" value="" name="Initials">
</div>

and i thought that this JQuery:

$(document).ready(function() {
        $("#field1").attr("tabindex","1");
});

would generate:

<div class="form1">
   <label>First Name</label>
   <input id="field1" class="field1" tabindex="1" type="text" value="" name="Initials">
</div>

yet i was wrog it did nothing.

there is alot more inputs i need to target and all with random ID’s 🙁


Additional information.

the form is generated by (i have changed some of the values but hope it makes sense):

<script type="text/javascript" src="https://XXX.com/widget.js"></script>
<script type="text/javascript">
var widget_config = {
   widgetId: 'XX',
   campaignId: 'XX',
   clientId: 'XX',
   trackingId: 'website',
   baseUrl: 'https://XXX.com'
}

var display_config7 = {
   cssId: 1,
   'background-color': '#',
   'font-family': 'Times New Roman',
   'color': '#000000',
   'font-size': '12px',
   'width': 400,
   'height': 600
}

widget.init('#widget_XXX', widget_config_XXX, display_config_XXX);

</script>

adding the JQuery to the page does not target this code generated so i tried adding it within the script itself which too did not work:

<script type="text/javascript" src="https://XXX.com/widget.js"></script>
<script type="text/javascript">
var widget_config = {
   widgetId: 'XX',
   campaignId: 'XX',
   clientId: 'XX',
   trackingId: 'website',
   baseUrl: 'https://XXX.com'
}

var display_config7 = {
   cssId: 1,
   'background-color': '#',
   'font-family': 'Times New Roman',
   'color': '#000000',
   'font-size': '12px',
   'width': 400,
   'height': 600
}

widget.init('#widget_XXX', widget_config_XXX, display_config_XXX);

$("#field-Initials").attr("tabindex","1");
$("#field-Surname").attr("tabindex","2");

</script>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T05:17:02+00:00Added an answer on May 27, 2026 at 5:17 am

    yet i was wrog it did nothing.

    No, it does exactly what you expect it to do. It sets the tabindex="1" attribute to an element with id="field1". It’s just that it does it directly into the DOM. If you look at the source code of the page you will see the original HTML as sent by the server. Use a DOM inspecting tool such as FireBug to see the modifications.

    As far as the random ids are concerned, well, then it will depend on what order you would like to apply the tabindex. You could select all your input fields like this $('input') and then increment the tabindex but this way the index will be set in the same order in which inputs appear in the DOM so this might require tweaking based on your specific needs:

    $(function() {
        $('input').attr('tabindex', function(index, attr) {
            return index + 1;
        });
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I’m trying to issue web requests asynchronously. I have my code working fine except
I have this code I am trying out and I can't figure out how
I have been trying to modify the following code in JSP from here :
I have ran into an interesting issue while trying to create a more usable
can anyone help? I have an issue with linq2sql and trying to Attach (update)
The issue I am trying to solve is that I have a folder with
I'm trying to adress the following issue: I have a server side .net application
Ok so I've spent a couple hours trying to resolve this issue and have
We have a MS Enterprise 2003 CA. I am trying to issue a certificate
Someone please help. I have an interesting issue. I am trying to implement an

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.