Skip to content

Instantly share code, notes, and snippets.

@kourindouhime
Last active August 29, 2015 14:23
Show Gist options
  • Save kourindouhime/a3e2f6d69f538b8e8dcb to your computer and use it in GitHub Desktop.
Save kourindouhime/a3e2f6d69f538b8e8dcb to your computer and use it in GitHub Desktop.
Instagram scroll pictures by pressing down key
$(document).keydown(function(e) { if(e.which == 40) { $("article").each(function() { if ($(this).offset().top > $(document).scrollTop()) { $(document).scrollTop($(this).offset().top+5); return false; } }); } e.preventDefault(); });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment