, on jQuery 1.7. , 1.6, 1.5 -, live
$("p").on("click", function(){
alert( $(this).text() );
});
$("p").live("click", function(){
alert( $(this).text() );
});
insted
$("p").click( function(){
alert( $(this).text() );
});
on ad live
http://api.jquery.com/on/
http://api.jquery.com/live/