[jQuery] JQuery ajax loaded pages lose scripts

[jQuery] JQuery ajax loaded pages lose scripts


When using the JQuery ajax to inject a page into another page, I lose
the script file access from that page. I've tried reloading the
script using $.getScript but with the JQuery UI I get a stack overflow
on line 509.
Here is the code I use for getting the external file:
$.ajax({url: 'myfile.htm',cache: false,success: function(html)
{fncLoadContent(html);}});
Anyone have a way of making the scripts available to files loaded
through ajax?
thanks
^.^