jQuery scroll()
trigger scroll event
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"> </script>/*from w ww.j av a2s. c o m*/ <script> let x = 0; $(document).ready(function(){ $("div").scroll(function(){ $("span").text( x+= 1); }); $("button").click(function(){ $("div").scroll(); }); }); </script> </head> <body> <p>Try the scrollbar in the div</p> <div style="border:1px solid black;width:200px;height:100px;overflow:scroll;"> test<br>test<br>test<br>test<br>test<br>test<br>test<br>test<br>test<br>test<br> test<br>test<br>test<br>test<br>test<br>test<br>test<br>test<br>test<br>test<br> test<br>test<br>test<br>test<br>test<br>test<br>test<br>test<br>test<br>test<br> test<br>test<br>test<br>test<br>test<br>test<br>test<br>test<br>test<br>test<br>test<br> </div> <p>Scrolled <span>0</span> times.</p> <button>Trigger scroll event for the window</button> </body> </html>