Well, i have this problem with a larger script but I will make it simple
Let's supouse this is my script
$("a").click(function(){
alert("test");
});
So, everytime someone click on an hyperlink, it will alert the user.
But when i retrieve an element from another page with AJAX, the script isn't activated when someone click on it.
Does anyone knows? Thanks