0

Is it possible to redirect to a different page when at a certain point in a web page? For example, You visit the site and scroll down and when you've reached a certain anchor, it redirects you to a different page. Is this possible? And if so, how? Thanks!

user147577
  • 13
  • 1

1 Answers1

0

When your code detects that the user has scrolled by the desired amount (e.g. like so), have a callback function that navigates like so window.top.location.href='nextpage.htm';

Note that many users may find this annoying, especially when using devices like tablets where scrolling may be accidental.

Community
  • 1
  • 1
EricLaw
  • 56,563
  • 7
  • 151
  • 196