[jQuery] I load an external page in a div but it's java script functions didn't work

[jQuery] I load an external page in a div but it's java script functions didn't work


I load a page in a div and i use some effect from jquery in these
pages but effect's didn't work
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery('#m12').click(function() {
jQuery('#left_intd').load('eee.html');
return false;
});
jQuery('#m22').click(function() {
jQuery('#left_intd').load('logintemp.html');
return false;
});
});
</script>