[jQuery] AJAX Response script is not executed
Hi;
I use ajax for an application. I use JSON as data type and the
response is something like;
<div id=\"areaMan\" style=\"display:none;\">
Message<br />
<textarea></textarea>
</div>
<a href=\"javascript:void(0)\" id=\"addNote\">Not Ekle</a>
And Javascript is;
$("#addNote").click(function () {
$('#areaMan').show();
});
I execute this function when page is loaded, but ıt doesnt work for
this response.
What is wrong?