Forum Moderators: open
[edited by: not2easy at 1:57 pm (utc) on Jan 19, 2023]
[edit reason] privacy/user request [/edit]
I'm thinking it's not possible then, here's the issue...
I doing this through a content provider which hosts the header and footer code, so it blends in with your site. They'll only allow a certain number of characters in the header and footer, I exceed that number by quite a bit.
Another restriction is that it can only be HTML, because that's what they're program saves it as. Thanks.
By the way, what's C&P?
Jason Shphik
Eg:
FILE: test.html
<html>
<head>
<script language="javascript" src="test.js"></script>
</head>
<body onload="loadHeader()">
<div id="header"></div>
<div id="content">This is the content.</div>
<div id="footer"></div>
</body>
</html>
FILE: test.js
function loadHeader()
{
document.getElementById("header").innerHTML = "header";
document.getElementById("footer").innerHTML = "footer";
}