In cases where the JavaScript within the external page is executed on run time, using Ajax to fetch it won't work. What you can do is first create a blank HTML page (ie: externalpage.htm), then inside it, create a <iframe> tag that calls the desired external page with the dynamic content: (ie: dynamic.htm). Something like:
Code:
<iframe src="dynamic.htm" style="margin:0; padding:0; width:100%; height: 100%"></iframe>
Then inside the Ajax Tabs script, have one of the tabs call externalpage.htm.
Bookmarks