html - javascript get scroll of child div -


i have structure this:

<div>      <div id="scrollid" style="height:100px;">          content here     </div>  </div>  <script> document.getelementbyid("mydiv").addeventlistener("touchstart", myfunction); function myfunction() {     // want position } </script> 

i want distance top, when user start scrolling (actually touching in mobile). final purose implementing pull refresh child div.

any idea?

try following.

<div>      <div id="scrollid" style="height:100px;" onscroll="myfunction();">          content here     </div>  </div>  <script> document.getelementbyid("mydiv").addeventlistener("touchstart", myfunction); function myfunction() {     document.getelementbyid("scrollid").scrolltop;     // want position } </script> 

Comments

Popular posts from this blog

node.js - Node js - Trying to send POST request, but it is not loading javascript content -

javascript - Replicate keyboard event with html button -

javascript - Web audio api 5.1 surround example not working in firefox -