HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> body{ height:800px; } </style> </head> <body onscroll="myFunction()"> <p>scroll it</p> <script> function myFunction(){ alert("You are scrolling"); } </script> </body> </html>
OUTPUT
×

Save as Private