Prev Demo
Onscroll
Next Demo
Write code here
J
|
B
|
A
<!DOCTYPE html> <html> <head> <title>Demo</title> </head> <body> <style> #myDIV { border: 5px solid black; width: 150px; height: 80px; overflow: scroll; } </style> <p style="color:green;font-size:30px">Scroll the mouse to change the color</p> <div id="myDIV" onscroll="myFunction()"> Techfunda is a online tutorials for the beginers and dotnetfunda is an online tutorials to learn and share the knowledge with eachother </div> <script> function myFunction() { document.getElementById("myDIV").style.color = "blue"; } </script> </body> </html>
Note: We DO NOT save your trial code in our database.
Output