Link to home
Start Free TrialLog in
Avatar of dmeans
dmeans

asked on

scrollTo() and scrollby()

window.moveTo and window.resizeTo() work fine in Netscape 4.0, but I can't get subject functions to work.  Please send working example.

Thanks
Dale Means
Avatar of ryanmc
ryanmc

scrollTo jumps the window directly to a location from where ever you are.
scrollBy scrolls the window a certain amount. For example,

If your at X: 25, Y: 50
scrollTo(100,100) would take you to X:100, Y:100
scrollBy(100,100) would take you to X:125, Y:150.

Here's an example of scrollTo. The syntax for scrollBy is the same.

<HTML><HEAD><TITLE>ScrollTo Example</TITLE></HEAD>
<BODY>
<A HREF="javascript:scrollTo(0,1000)">Scroll Down</A>
<BR>q<BR>w<BR>e<BR>r<BR>t<BR>y
<BR>u<BR>i<BR>o<BR>p<BR>a<BR>s
<BR>d<BR>h<BR>j<BR>k<BR>l<BR>z
<BR>x<BR>c<BR>v<BR>b<BR>n<BR>m
<BR>q<BR>w<BR>e<BR>r<BR>t<BR>y
<BR>u<BR>i<BR>o<BR>p<BR>a<BR>s
<BR>d<BR>f<BR>g<BR>h<BR>j<BR>k
<BR>l<BR>z<BR>x<BR>c<BR>v<BR>b
<BR>n<BR>m<BR>q<BR>w<BR>e<BR>r
<BR>t<BR>y<BR>q<BR>w<BR>e<BR>r
<BR>t<BR>y<BR>u<BR>i<BR>o<BR>p
<BR>a<BR>s<BR>d<BR>h<BR>j<BR>k
<BR>l<BR>z<BR>x<BR>c<BR>v<BR>b
<BR>n<BR>m<BR>q<BR>w<BR>e<BR>r
<BR>t<BR>y<BR>u<BR>i<BR>o<BR>p
<BR>a<BR>s<BR>d<BR>f<BR>g<BR>h
<BR>j<BR>k<BR>l<BR>z<BR>x<BR>c
<BR>v<BR>b<BR>n<BR>m<BR>q<BR>w
<BR>e<BR>r<BR>t<BR>y<BR>q<BR>w
<BR>e<BR>r<BR>t<BR>y<BR>u<BR>i
<BR>o<BR>p<BR>a<BR>s<BR>d<BR>h
<BR>j<BR>k<BR>l<BR>z<BR>x<BR>c
<BR>v<BR>b<BR>n<BR>m<BR>q<BR>w
<BR>e<BR>r<BR>t<BR>y<BR>u<BR>i
<BR>o<BR>p<BR>a<BR>s<BR>d<BR>f
<BR>g<BR>h<BR>j<BR>k<BR>l<BR>z
<BR>x<BR>c<BR>v<BR>b<BR>n<BR>m
<BR>q<BR>w<BR>e<BR>r<BR>t<BR>y
</BODY>
</HTML>
Avatar of dmeans

ASKER

I know the window will scroll vertically (Y) but I wented an example of how to scroll horizonally (X).  All the examples I have found use 0 for X, as above.  I would very much appreciate an example which will scroll "across" instead of just "up and down".

Many thanks.

Dale means

ASKER CERTIFIED SOLUTION
Avatar of ryanmc
ryanmc

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of dmeans

ASKER

It works fine.

Thanks