Monday, December 6, 2021

DIV onscroll function in javascript

 <div onscroll="myfunction()">


</div>


function myfunction()

{

}


d3.select("#divColumnRight")

    .on("scroll", function(){

//statements

});

No comments:

Post a Comment