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

The Archive Base Latest Questions

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

I have form: <form action= method=post> <div id=fields_1> <input name=field1_1 type=… <input name=field2_1 type=…

  • 0

I have form:

<form action="" method="post">
    <div id="fields_1">
        <input name="field1_1" type="...
        <input name="field2_1" type="...
        <input name="field3_1" type="...
        <input name="field4_1" type="...
    </div>
    <a href="#" onclick="duplicate();">Duplicate</a>
</form>

and i want to duplicate on click all fields but different names, for example when I click “Duplicate” it shows:

<form action="" method="post">
    <div id="fields_1">
        <input name="field1_1" type="...
        <input name="field2_1" type="...
        <input name="field3_1" type="...
        <input name="field4_1" type="...
    </div>
    <div id="fields_2">
        <input name="field1_2" type="...
        <input name="field2_2" type="...
        <input name="field3_2" type="...
        <input name="field4_2" type="...
    </div>
    <a href="#" onclick="duplicate();">Duplicate</a>
</form>

How to do it?

  • 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-26T00:25:11+00:00Added an answer on May 26, 2026 at 12:25 am

    http://api.jquery.com/clone/

    $('#fields_1').clone().attr("id","fields_2").appendTo('#yrContainer');
    

    Where yrContainer is either the form, or maybe a new div container. If you need to change input names shown below, and here jsFiddle.

    $("#myButton").click( function () {
        var fields = $('#fields_1').clone().attr("id","fields_2"); 
        var inputs = fields.find("input");
        inputs.each(function(i) {
         $(this).attr("name", "field"+i+"_2");
       });   
      fields.appendTo('#yrContainer')
    })
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an HTML form: <form action='process.php' method='post'> <input type='checkbox' name='check_box_1' /> Check me!<br>
I have a simple form like this: <form name=serachForm method=post action=/home/search> <input type=text name=searchText
I have an html input field, such as <form method=post action=process.php enctype=multipart/form-data> <div> <h3>Files:</h3>
I have the following form <form id=myform method=post action=#> <div class=fields> <fieldset class=ui-widget ui-widget-content
I have a form with the following HTML below: <form id=course_edit_form name=course_form action=/courses/save method=post>
I have an ASP.NET MVC project with a form. In the Action method that
i have form action file in another directory but some file send to this
I have a form action that needs to have its value set from a
i have a form button in the form,which i need to perform basic action
I have a form which users must fill out and submit. The controller action

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.