Sure, inside ajaxtabs.js, change the line:
Code:
document.getElementById(containerid).innerHTML=loadstatustext
to something like:
Code:
document.getElementById("loadingdiv").innerHTML=loadstatustext
And add to the below the part in red:
Code:
if (page_request.readyState == 4 && (page_request.status==200 || window.location.href.indexOf("http")==-1)){
document.getElementById(containerid).innerHTML=page_request.responseText
document.getElementById("loadingdiv").innerHTML=""
}
Finally, make sure the loading DIV is defined on your page beforehand:
Code:
<div id="loadingdiv"> </div>
Bookmarks