Is it possible??

blanko

BANNED
Joined
Mar 16, 2008
Messages
592
Reaction score
127
I have an iframe on one of my pages. I want to know if it's possible to make the iframed page automatically scroll down 100px??

I've been searching google for about an hour now and can't find a solution.
 
I would think you can do so with Javascript somehow. Although how exactly to do, I am not sure. I'll look around for a minute and see it I find anything.
 
It is possible and the answer is on BHW... Search very closely.. Lol
 
it can be,but i don't know how:D
try to post this in some web design forum,it's about javescript or css i think
 
Try this (haven't tested it though):

<script type="text/javascript">
function Scroll() {
window.scroll(0,100); // horizontal and vertical
}
</script>

<body onLoad="Scroll()">
 
That worked perfectly. Thanks so much!
 
Back
Top