That's odd, I don't get that error but, the script doesn't work for me locally in IE 7. It just switches to the external page. However, what you are experiencing may be due to the same cause described below. Did you change anything?
Unless you are trying to import content from somewhere else than the same local machine where you are using the script or your imported content is invalid, that is due to improvements in IE 7 and, will happen locally. If you have FF or Opera, they will not do that. Once the page is live, IE 7 will be just fine.
If you do not have either of those two browsers to use in testing locally, you should but, that is another story. You can temporarily disable the error by editing ajaxtabs.js like so (near the top):
Code:
function ajaxpage(url, containerid, targetobj){
var page_request = false
/*if (window.XMLHttpRequest) // if Mozilla, Safari etc
page_request = new XMLHttpRequest()
else*/ if (window.ActiveXObject){ // if IE
try {
page_request = new ActiveXObject("Msxml2.XMLHTTP")
}
catch (e){
try{
page_request = new Act
Don't forget to return it to its original state for live use.
Bookmarks