You have to rebind the clicks after the ajax loads:
$.ajax({
type: "GET",
url: "news.php",
success: function(msg){
$("#response").fadeIn("slow").html(msg);
$("#response a").click(function(){
alert("Hello");
return false;
)};
}
});
~Sean

