I\'ve got this function:
$(document).ready(function() {
$(\'.post_button, .btn_favorite\').click(function() {
//Fade in the Popup
$(\'.login_modal_message\
You need to bind the jQuery click event once your ajax content is replaced old content
in AJAX success block you need to add code like here new response html content one a tag like
Click Me
So you can bind the new click event after change the content with following code
$("#new-tag").click(function(){
alert("hi");
return false;
});