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 6698399
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T06:34:25+00:00 2026-05-26T06:34:25+00:00

I have a list of inputs generated by jQuery : <input type=’text’ name=’field[+ j++

  • 0

I have a list of inputs generated by jQuery :

<input type='text' name='field["+ j++ +"]' />
<input type='file' name='field["+ j++ +"]' />
<textarea name='field["+ j++ +"]' value='' />
<textarea name='field["+ j++ +"]' value=''/>

j++ increment when the user add a new input field and it finally look like this :

<input type='text' name='field[0]' />
<input type='file' name='field[1]' />
<textarea name='field[2]' value='' />
<textarea name='field[3]' value=''/>

Now the user has the possibility to delete a field with a button, example : if I deleted the field[2] it results this :

<input type='text' name='field[0]' />
<input type='file' name='field[1]' />
<textarea name='field[3]' value=''/>

The problem is that the incremented fields are no more suitable later because instead of a list like 0,1,2,3… I have 0,1,3…

I just want to change the number attribute of fields after the one which has been deleted to fit with others incremented fields

Another thing : the user can drag and drop fields to change the order. So if 1 field is deleted the field right after must take its number place and so on

The code to delete a field :

$("#deletebtn").live("click", function(){
  $(this).parent("li").remove();
});

Any help would be very appreciated.

  • 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-26T06:34:25+00:00Added an answer on May 26, 2026 at 6:34 am

    Add a common class name to all elements using the ordering:

    <input type='text' name='field[0]' class='dynamic-order' />
    <input type='file' name='field[1]' class='dynamic-order' />
    <textarea name='field[2]' value='' class='dynamic-order' />
    <textarea name='field[3]' value='' class='dynamic-order' />
    

    Then after an element is removed, iterate over the fields and set new index:

    $("#deletebtn").live("click", function(){
      $(this).parent("li").remove();
      $( ".dynamic-order" ).each(
        function( index ) {
        this.name = "field["+index+"]";
        }
      );
    });
    

    edit: I found some problems with your jsfiddle, here is the fixed version:

    http://jsfiddle.net/ZKFHH/1/

    For some reason the names don’t always show the most recent value, you have to check the property for it.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a list of input type radio buttons in formview (edit mode) and
I have a list of file input boxes and I want to know if
I have something like the following <div id=container> <ul id=name_list> <li class=name> <input type=hidden
I have an algorithm that generates strings based on a list of input words.
I have a list of input words separated by comma. I want to sort
I have in input, which could be a single primitive or a list or
I have a problem with populating an autocomplete list based on a previous input.
i have list of dynamic generated buttons and id is generated on run time.
i have a asp:radio button with two list items asp:RadioButtonList id=Myradio asp:listitem1 value=li1 asp:listitem2
On my page, I have a dynamically generated list of radio buttons (created with

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.