here is the case. with jquery ajax call i have added a new link < a id="new_link >
and i want to use jquery on that newly added link:
$(document).ready(function(){
$.post("static/js/jquery_call.php", function(data){
$("#div_id").html(data);
});
$("#new_link").click(function(){
..... (and so on)
but it doesnt allow me because this link was added after the DOM has been generated. I can manipulate all other links but not the new added one. How can i solve this?