The way iOS handles the onscroll event is described here . Basically, instead of sending multiple onscroll events when scrolling a page / element, it dispatches one onscroll event after the page / element has stopped scrolling.
This creates various problems when writing a dynamic website, and backups are required to fix it.
My question is, is there a Modernizr way to use this “feature flaw”. Another way to deal with it would be to determine which device is being used, which is actually not perfect (the future is iOS 7 comes along and suddenly supports it for all devices, and my site still displays a backup).
source share