My problem here I know is bubbling within the DOM because I have multiple pages inside of my pagination and when I click on a edit class link multiple times it bubbles and loads the same file continuously and I’m wanting to know a better way to solve this.
$('.edit').live('click', function(e) {
e.preventDefault();
var contentPageID = $(this).attr('id');
$('div.right_content').load('modules/forms/edit/contentpages.php?contentPageID=' + contentPageID);
});
and