I've been lookings days for solving a problem, but i can not find the trick..When i load an external php page into a div and click afterward on a link come with the external php code, this link does nothing. Please take a look at this code.index.php Test\[code\]<script src="http://stackoverflow.com/questions/2083717/jquery.js" type="text/javascript"></script><script type="text/javascript">jQuery(document).ready(function() { $("#loadexternfile").bind("click", function(){ // some more events loadContent(); }); $("#test").click(function() { alert("Hello world!"); }); function loadContent() { $.ajax({ type: "GET", url: "external.php", cache: false, dataType: 'html', success: function(html){ $(".loaddiv").html(html); }, error: function(){ }, complete: function(){ } }); }});</script></head><body><a href="http://stackoverflow.com/questions/2083717/#" id="loadexternfile">loadexternfile</a><div class="loaddiv"></div></body></html>\[/code\]external.php\[code\]<a href="http://stackoverflow.com/questions/2083717/#" id="test">test</a>\[/code\]Any ideas? Thanks