Task: visitor scrolled down to a certain place on the page - the function was executed (the call was made only once, because the execution is long and resource-intensive). How to do this with jquery? $ (window) .scroll (function () {show_graphics ();}); - will perform the "every scroll" function
in the function itself, we check the position of the scroll, compare it with the position of the element, if the first is greater than the second, we perform the function. But how to execute it ONLY ONE ONE?