Please help, trying to include webpage and make changes
Posted: Mon Mar 09, 2009 6:09 am
Hi,
I hope someone can help me out with this,
What I have at the moment is a hidden redirect to another website (which I also look after) from one of our pages, as I don't really want people visiting this site to see the url, as follows.
<script type="text/javascript">
function changeTitle()
{
if (top.frames['main'].document.title)
{
top.document.title=top.frames['main'].document.title;
}
}
</script>
</head>
<frameset>
<frame name="main"
src="http://www.anotherdomain.co.uk/index.as ... ling="auto"
target="main" ONLOAD="changeTitle();">
<noframes>
<body>
If you are seeing this message your browser cannot read our
webpage properly.
</body>
</noframes>
</frameset>
</body>
The problem is that there is certain content on this site that I would like to change as well, for example the header and footer images. Is there an easy way of doing a search and replace so that I can display alternative content here? or am I giong about it in the wrong way completely?
any feedback would be appreciated
I hope someone can help me out with this,
What I have at the moment is a hidden redirect to another website (which I also look after) from one of our pages, as I don't really want people visiting this site to see the url, as follows.
<script type="text/javascript">
function changeTitle()
{
if (top.frames['main'].document.title)
{
top.document.title=top.frames['main'].document.title;
}
}
</script>
</head>
<frameset>
<frame name="main"
src="http://www.anotherdomain.co.uk/index.as ... ling="auto"
target="main" ONLOAD="changeTitle();">
<noframes>
<body>
If you are seeing this message your browser cannot read our
webpage properly.
</body>
</noframes>
</frameset>
</body>
The problem is that there is certain content on this site that I would like to change as well, for example the header and footer images. Is there an easy way of doing a search and replace so that I can display alternative content here? or am I giong about it in the wrong way completely?
any feedback would be appreciated