Assuming you're using the IFRAME mode to display "external.htm", you can add a simple script inside the later to check that the page is being loaded within a FRAME, and if not, redirect to the main page showing Ajax Tabs Content. So inside "external.htm", you'd add something like:
Code:
<script type="text/javascript">
if (parent.frames.length==0){ //if not being viewed inside frame
location.replace("http://mysite.com/ajaxtabs.htm")
}
</script>
This doesn't work if the external page is being included using Ajax, however.
Bookmarks