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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T03:34:21+00:00 2026-06-11T03:34:21+00:00

I want to clone a form and not have modification of that form effect

  • 0

I want to clone a form and not have modification of that form effect the original form. How to I give each instance of the form a unique ID so that the elements are not duplicated?

$(document).ready(function() {
    // shows / hides results based on selection
    $(".categories-select").live("change", function() {
        if ($(this).val() == 'dinner') {
            $('.dinner').removeClass('hide');
            // toggles dinner results, sub menus
            $(this).parent('.controls').find('.restaurant-submenu-select').removeClass('hide');
        }
    });    

    // Duplicates category select menu 
    $(".add-activity").click(function() {
        $(".activity-category")
                       .clone()
                       .removeClass('activity-category')
                       .appendTo("#we-want-to")
                       .find('.restaurant-submenu-select')
                       .addClass('hide');
    });    

    $(".add-activity-alternate").click(function() {
        $(".activity-category-alternate")
                       .clone()
                       .removeClass('activity-category-alternate')
                       .appendTo("#we-want-to")
                       .find('.restaurant-submenu-select, .results-table')
                       .addClass('hide');
    });
});

​

Thank You!

  • 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-06-11T03:34:22+00:00Added an answer on June 11, 2026 at 3:34 am

    When you clone add also a dynamic id

    var id = 0;
    
    (function() {
        yourClone.attr('id', 'something-' + id);
        id++
    });
    

    In your code something like that:

    $(document).ready(function() {
    
        var id = 0;
    
        // shows / hides results based on selection
        $(".categories-select").live("change", function() {
            if ($(this).val() == 'dinner') {
                $('.dinner').removeClass('hide');
                // toggles dinner results, sub menus
                $(this).parent('.controls').find('.restaurant-submenu-select').removeClass('hide');
            }
        });    
    
        // Duplicates category select menu 
        $(".add-activity").click(function() {
            $(".activity-category")
                           .clone()
                           .removeClass('activity-category')
                           .appendTo("#we-want-to")
                           .find('.restaurant-submenu-select')
                           .addClass('hide')
                           .attr('id', 'something' + id);
            id++
        });    
    
        $(".add-activity-alternate").click(function() {
            $(".activity-category-alternate")
                           .clone()
                           .removeClass('activity-category-alternate')
                           .appendTo("#we-want-to")
                           .find('.restaurant-submenu-select, .results-table')
                           .addClass('hide')
                           .attr('id', 'something' + id);
            id++
        });
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want that the form will not close by doing Alt + F4 but
I have a number of draggable images that I want to clone and then
I have a form that I want to close after 5 seconds if no
I have a function called taskButtonClick() that: Sets the variable form to a clone.
Is there a way to clone HTML elements using JQuery? However, I want to
I have a jdialog and want close it on confirmation after that store the
I have a windows form that creates multiple console applications of the same program
(VS2005, .Net 2.0) I have a form that is displayed as a dialog using
I want to make a simple FORM (not SQLFORM) in web2py with two fields
I have a HTML snippet as follows, I want to take the 'article-form' div,

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.