Problem with data loaded by jquery

Problem with data loaded by jquery

Hello,

here is my script from <head>
<script type="text/javascript">
$(document).ready(function() {

$('#dodaj').ajaxForm(function() {
$("textarea").val("");
$('div#dane').load('dodaj.php');
});


$(".click").click(function(){
pos = this.id;
alert(pos);
return false

});

});
</script>

Orange add data from textarea to mysql and refresh in div #dane.
Darkblue show alert when I click on the text in div #dane.

Problem: When I'm trying to add sth from textarea and I get new data, when i click on the refreshed text in div #dane, script doesn't show alert. When i refresh whole page everything works fine. I use smarty.


//EDIT: Now i Know, Jquery does not making operations on data loaded by $('div#dane').load('dodaj.php'); How to load data in other way?