In the header of the first page
<script type="text/javascript">
$(document).ready(function(){
$("#register_reg").click(function(){
$("#register_form").load("test_test.php #register_rules");
});
});
</script>
In the content of the ID #register_rules in the second file (test_test.php) there are this line
<script type="text/javascript" src="jquerycode.js"></script>
The probleme is, in the fist page, when i click the link (ID #register_reg) the line script not added in the ID #register_form
So, how I can add the content of the ID #register_rules with here script in the ID #register_form