Skip to content

Instantly share code, notes, and snippets.

@christoffer
Created April 1, 2015 18:46
Show Gist options
  • Save christoffer/ce54041dde1cac615833 to your computer and use it in GitHub Desktop.
Save christoffer/ce54041dde1cac615833 to your computer and use it in GitHub Desktop.
var scrollTopBeforeIframe = $window.scrollTop();
$window.one('scroll', function(e) {
console.log('window scroll event @' + $window.scrollTop() + ', reverting to ' + scrollTopBeforeIframe);
$window.scrollTop(scrollTopBeforeIframe);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment