Skip to content

Instantly share code, notes, and snippets.

@MaxDavila
Last active August 29, 2015 14:08
Show Gist options
  • Save MaxDavila/9eac48ecd4c18022d004 to your computer and use it in GitHub Desktop.
Save MaxDavila/9eac48ecd4c18022d004 to your computer and use it in GitHub Desktop.
mqScroll.js
function mqScroll(element, target, event, callback) {
$(element).scrollTop(target)
preventDefault(event);
return callback()
}
//usage
mqScroll(scrollWith, targetY, event, function() {
setTimeout(function() {
scrollAnimating = false;
}, 250);
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment