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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T22:57:47+00:00 2026-06-01T22:57:47+00:00

I need to clone the id and then add a number after it like

  • 0

I need to clone the id and then add a number after it like so id1, id2, etc. Every time you hit clone you put the clone after the latest number of the id.

$("button").click(function() {
    $("#id").clone().after("#id");
}); 
  • 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-01T22:57:49+00:00Added an answer on June 1, 2026 at 10:57 pm
    $('#cloneDiv').click(function(){
    
    
      // get the last DIV which ID starts with ^= "klon"
      var $div = $('div[id^="klon"]:last');
    
      // Read the Number from that DIV's ID (i.e: 3 from "klon3")
      // And increment that number by 1
      var num = parseInt( $div.prop("id").match(/\d+/g), 10 ) +1;
    
      // Clone it and assign the new ID (i.e: from num 4 to ID "klon4")
      var $klon = $div.clone().prop('id', 'klon'+num );
    
      // Finally insert $klon wherever you want
      $div.after( $klon.text('klon'+num) );
    
    });
    <script src="https://code.jquery.com/jquery-3.1.0.js"></script>
    
    <button id="cloneDiv">CLICK TO CLONE</button> 
    
    <div id="klon1">klon1</div>
    <div id="klon2">klon2</div>

    Scrambled elements, retrieve highest ID

    Say you have many elements with IDs like klon--5 but scrambled (not in order). Here we cannot go for :last or :first, therefore we need a mechanism to retrieve the highest ID:

    const all = document.querySelectorAll('[id^="klon--"]');
    const maxID = Math.max.apply(Math, [...all].map(el => +el.id.match(/\d+$/g)[0]));
    const nextId = maxID + 1;
    
    console.log(`New ID is: ${nextId}`);
    <div id="klon--12">12</div>
    <div id="klon--34">34</div>
    <div id="klon--8">8</div>
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to clone a file input form, which every time I select a
I have this dropdown. I need clone for my other dropdown lists: <select name=general>
I need create clone repository. but I do not know where can I get
I have some particular need to clone an element (image) and be draggable inside
i have a single filed which i need to clone with a clone button
I have an entity that has a few relations. I need to clone this
I need a method that creates an empty clone of an object in a
I need a shallow copy of an java ArrayList , should I use clone()
I am doing little assigment which involves fork,vfork and clone function. I need to
Does it need manually close InputStream (bean.getContentAsStream()) in java after pass to Spring JDBC

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.