Skip to content

Instantly share code, notes, and snippets.

@boertel
Created January 24, 2017 19:06
Show Gist options
  • Save boertel/6cd81c1e22cc82f1fbeb418c8742356a to your computer and use it in GitHub Desktop.
Save boertel/6cd81c1e22cc82f1fbeb418c8742356a to your computer and use it in GitHub Desktop.
j/k for instagram
var index = 0;
function navigate(evt) {
var media = document.getElementsByTagName('article')[index];
if (media) {
index += (evt.key === 'j' ? 1 : (evt.key === 'k' ? -1 : 0));
media.scrollIntoView();
}
}
window.addEventListener('keydown', navigate);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment