I have this simple code. http://jsfiddle.net/borth/BmEZv/ If you click on the link once, it works fine. If you click on it a second time, it doesn\'t work. Due to the html b
$(document).ready(function(){ $(document.body).on('click', ".OpenPopup", function(e){ alert('test .OpenPopup'); // do something return false; }); $(document.body).on('click', ".EditIcon", function(){ alert('test .EditIcon'); // do something $("#ABC").html('click here again'); }); });