1$(document).on("click", '.mylink', function(event) {
2 alert("new link clicked!");
3});
1The problem is that .click only works for elements already on the page.
2You have to use something like on if you are wiring up future elements
3
4$("#LangTable").on("click",".deletelanguage", function(){
5 alert("success");
6});