Here's the page in question:
http://www.lukaspleva.com/MoneyThink/NationalAdmin.php
If you go to that page, you'll see that you can remove chapters from the system just by clicking the red cross button next to each row. As you do that, the chapter counter at the top automatically updates.
Problem arises when you add a new chapter to the mix via the section at the top. The new section gets added and the counter updates, but the delete button stops working.
Looking at what's happening with the code, it seems like the .load() function is creating an additional form="update_existing_chapters" WITHIN the form id="update_existing_chapters" that's already on the page.
Basically, instead of just refreshing the div or the form, it creates a duplicate copy within it, which breaks the code.
The relevant piece of code is:
$('form#update_existing_chapters')
.load('NationalAdmin.php form#update_existing_chapters');
Any idea why it's creating a duplicate element/section rather than just refreshing the current one?
UPDATE #1
I now realize I have to use .on() to preserve the delete event for the buttons. I tried the following code, but that actually breaks the AJAX completely. Any ideas why?
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"></script>
<script type="text/javascript">
jQuery(document).ready(function() {
$('#current_chapters').on('click', '.delete-chapter', function(){
jQuery.ajax({
type: 'post',
url: "http://www.lukaspleva.com/MoneyThink/CreateNewChapter.php",
dataType: 'text',
data: $('#create_new_chapter').serialize(),
success: function(msg){ alert(msg); $('#current_chapters').load('NationalAdmin.php #current_chapters'); }
});
return false;
});
});
</script>