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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T00:10:42+00:00 2026-06-12T00:10:42+00:00

I have multiple div’s on my page, that can be added to the page

  • 0

I have multiple div’s on my page, that can be added to the page dynamically, and can also be removed.

On page load, the dynamically created div’s are loaded from localStorage with uniqiue id’s and a common class depending on the div, and I call a function along with that, content().

The function content() looks like this:

function content(){
    alert("test");
    $(".two button").click(function(){
        var id = $(this).parent().attr("id");
        alert(id);
    });
}

Pretty simple, all it does is alert “test” when the function is called, and if you click .two <button>, it will alert .two <textarea> .val().

This works fine once the div’s have been loaded, but I run into the problem when I clone the div’s

When I clone the div’s, it gives them a unique id and a common class like above. At the end of cloneDiv(), I call content(), so that clicking on the elements inside will produce the same results as above.

The problem is, the function will get called as many times as there are div’s on the screen, but also means that clicking on the <button> in div .two will alert .two <textarea> .val() three times.

TLDR; Clicking on the button in .two get’s called as many times as there are div’s on the screen, as the function is called once the dynamic div is created, but should only be called once.

There’s a lot of code to do all this, but I think I explained what happens pretty clearly. I will however whip up a demo if that would help more.

  • 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-12T00:10:43+00:00Added an answer on June 12, 2026 at 12:10 am

    This is what “event delegation” is for. You set up a handler on the document and it will handle events from its descendants, even if they are created after the handler is attached:

    $(document).on("click", ".two button", function(){
    // put a click hander on the document to process clicks
    // from buttons that are descendants of elements with class=two
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have multiple div's with the same class that are on a page that
I'm implementing a simple web-page, in that page, I have multiple div objects, what
I have multiple html documents that share one css stylesheet (not multiple page div
How can have a div which contain multiple multiple div it may 4-6-8 how
I have multiple menues on my page... <div class=menu> <div>Menu header</div> <div>Menu content</div>// should
How can i execute the action only on the div,when i have multiple div
I have multiple toggle divs on the same page, and the div I'm toggling
I have multiple tables on my page that contain a checkbox. Immediately following the
I have multiple div elements on an ASPX page. Each of these div elements
On my page, I have multiple div with specified class which have 2 span

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.