Skip to content

Instantly share code, notes, and snippets.

@headquarters
Last active May 1, 2020 16:12
Show Gist options
  • Save headquarters/48b7a7fed1a3baf5499d8d107c4dd394 to your computer and use it in GitHub Desktop.
Save headquarters/48b7a7fed1a3baf5499d8d107c4dd394 to your computer and use it in GitHub Desktop.
Scroll to next Linux Academy video
javascript:(function()%7Bvar%20list%20%3D%20document.querySelectorAll(%22.fa-fw.complete%22)%3Blist%5Blist.length-1%5D.scrollIntoView(%7Bbehavior%3A%20%22smooth%22%20%7D)%7D)()
@headquarters
Copy link
Author

Pre-minified script:

var list = document.querySelectorAll(".fa-fw.complete");
list[list.length-1].scrollIntoView({behavior: "smooth" });

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment