[jQuery] An event from the ajax result

[jQuery] An event from the ajax result


Hi All,
I'm quite new in JQuery and this mailing list. And want to ask
something that I couldn't get the answer yet.
I hope someone can help me.
I have this HTML link:
<a href="#" class="abc">the link</a>
And this JQuery.
$(".abc").click(function() {
$.ajax({
url: "url.php",
method: "post",
data: "data1=1",
success: function(m) {
$(".parent_div").append(m);
}
});
}
The Ajax process will result this (the m variable):
<a href="#" class=".abc">link 1</a>
The question is, how can I make the $(".abc").click() above, working
on the HTML ajax result?
Thanks in advance.
Didats Triadi