To start, I know people hate frames, however it is the least energy for best result for pages I have no control over.
Just an example:
<html>
<head>
<title>Test Page</title>
<script type="text/javascript">
function scrollFrame()
{
document.frames["HOME"].scrollTo(0,90);
document.frames["VIDEO"].scrollTo(0,90);
document.frames["APPS"].scrollTo(0,90);
}
</script>
</head>
<frameset rows="30%,30%,*">
<frame name="HOME" src="www.cwtv.com" scrolling="auto" frameborder=0 />
<frame name="VIDEO" src="www.cwtv.com/cw-video" scrolling="auto" frameborder=0 />
<frame name="APPS" src="www.cwtv.com/apps" scrolling="auto" frameborder=0 />
</frameset>
<body onLoad="scrollFrame();">
</body>
</html>
I have no idea how to incorporate the scrollFrame function into the frame, if that is even possible.
EDIT: I have added the scrolls statically to the JavaScript function and am now attempting to call them directly from an empty body. I also put the example URLs in the same domain.
I'll accept any help provided, just remember I will have no control over the sources.
Appreciate the help!