-
Hi, i have tried using the script you suggested but I am still unsure as to when I call the css and js files. I have re-uploaded what i did to the same link. As you can see, there is no css or .js being applied to the content loaded in.
Sorry again if I am being a bit dunse.
-
I applied another method that seems to work.
Demo HERE.
There'a a download possibility. Examine the sources of the files.
Once you've downloaded it, I'll remove it.
===
Arie.
-
thats great, thankyou so much. One issue I have is that when you switch content, the div seems to flash white. Is there anyway to get rid of this?
-
In web.html, you have the following function:
Code:
function include(url) {
window.frames.dataFrame.window.location.replace(url);
}
Replace it with:
Code:
function include(url) {
document.getElementById('content').style.visibility='hidden';
window.frames.dataFrame.window.location.replace(url);
setTimeout('document.getElementById("content").style.visibility="visible"',250)
}
That will take away the flash. (You may have to increase the value for the timeout).
===
Arie.
-
Works a treat, thanks so much for your help.