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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T06:38:53+00:00 2026-06-09T06:38:53+00:00

I have a web application that is based on the users creating certain divs

  • 0

I have a web application that is based on the users creating certain divs through a click function. When the user adds a div I also give them the ability of deleting said function. Each time the user adds a div it is pushed into an array. Then user can save the array and load it when they come back.

The function to delete a div is nested within the function to add as that is the only way I have found make the function work.

The problem I have is that I must also call the delete function within the load function to make delete button work before the add button is clicked. I tried just calling function out side either function but since there are no divs to begin with. So when the page loads and the delete button is clicked, it is implemented twice and ruins the application.

I am new to programming and what I am doing right now is mostly procedural, so any input work be appreciated. I feel like I am making a rookie mistake, the pseudo code is below.

$(button).cick(function(){
    store div in array;
    add div to container;
    call remove function;
});
function loadPage() {
    retrieve stored array;
    add stored divs to container;
    call remove function;
}
loadPage();
  • 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-09T06:38:54+00:00Added an answer on June 9, 2026 at 6:38 am

    You can delegate the delete action to the container, like this :

    $('#container').on('click', '.delete', function() {
        $(this).closest('div.className').remove();
        //here delete stored clone from array.
    });
    

    Adjust the selectors to fit your HTML

    That way, any button with class="delete", when clicked, will cause its (inner) containing div to be removed (deleted).

    • The action will apply to all delete buttons within the container, regardless of whether they are in place at the time this click handler is attached, or inserted later.
    • This delegated action will remain in place providing the (outer) container itself is not removed (deleted).
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a web-based application that notifies users of activity on the site via
i have created an mvc3 web application that uses forms based authentication. one part
I have a web application that dynamically loads assemblies based on database configuration entries
I'm writing a web based application that will have its own authorization/authentication mechanism (traditional
Let me share the following scenario: I have a ASP.NET intranet Web-based application that
I have a localized spring mvc based web application, that has an externalized messages
I have a web application that allows users to enter search criteria and the
I have a web application that shows a users all of their data bucketed
I have a Struts based web application that has a structure similar to the
I have a PHP-based web application that monitors the status of a process and

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.