My script below generates a url if the $.post() response has an error. I am trying to use .on() so that I can attach a function to the URL generated, but it does not work. When I add the URL in the DOM (without the $.post) it works like a charm, it just does not want to work if the url is generated within $.post(). Any ideas or solution on how I can get it working?
// Do the database check:
$.post("test.php",{searchFor : search},function(data) {
if(data.response == true) {
// DO SOME STUFF
} else if(data.response == false && data.error == "noDoc") {
$("#resultsTable").html("<tr><td colspan='6'><p><strong>No user found, <a href='#' class='addDoctor'>Click here</a> to add a doctor.</strong></p></tr>");
} else {
$("#resultsTable").html("<tr><td colspan='6'><p><strong>"+data.error+"</strong></p></tr>");
}
});
});
$(".addDoctor").on("click",function() {
alert("test");
return false;
});