waypoints icon indicating copy to clipboard operation
waypoints copied to clipboard

Waypoints is a library that makes it easy to execute a function whenever you scroll to an element.

Results 103 waypoints issues
Sort by recently updated
recently updated
newest added

In `Infinite.js` [parseHTML](https://api.jquery.com/jquery.parsehtml/) strips out `` tags by default: ```js var $data = $($.parseHTML(data)) ``` In my use-case I'd prefer: ```js var $data = $($.parseHTML(data, undefined, true)) ``` This makes...

Check out my page: www.picturepunches.com I load waypoint once the page is loaded and every time the user reach to the bottom. I want waypoint to excute once everytime it...

I want to add a fade in effect to **only to the recently added content**. How do I achieve this? I want to prevent any abrupt transition between existing and...

Changing to use typeof arguments[0] === "function instead of $.isFunction(arguments[0]) to support the latest versions of jQuery, since $.isFunction() is deprecated as of jQuery 3.3 https://api.jquery.com/jquery.isfunction/

Hi from Russia! I build my app with webpack to one single app.js file, and get error. In your `waypoints` library missing semicolon at the end, pleass add it! :)

I noticed there haven't been any updates in 2-years. I am looking for a scrolling JavaScript library similar to ScrollMagic or Skrollr. However, none seem to be actively developed. And...

After retrieving the data from the API response the whole page crashes on the IOS mobile devices. We use your library as a wrapper for the each item in the...

The code as written now assumes that either - window.onload is set explicitly, or - window.onload is undefined But if someone used jQuery to add a handler i.e. `jQuery( function(...

In order to boost scrolling performance, one can use passive event listeners. The only limitation is that the handler can't call `preventDefault`. Just add `{ passive: true }` as third...

its not working with latest jquery version