DEV Community

Discussion on: What's new in browser support?

Collapse
 
nickytonline profile image
Nick Taylor • Edited

The Intersection Observer API is not really new, but it’s not talked about a lot still. Browser support is pretty decent for it now.

“ The Intersection Observer API lets code register a callback function that is executed whenever an element they wish to monitor enters or exits another element (or the viewport), or when the amount by which the two intersect changes by a requested amount.“

Collapse
 
zcdunn profile image
Zack Dunn

I just used Intersection Observer to implement some scroll effects. Pretty neat and useful