Created
September 3, 2021 17:39
-
-
Save davidroyer/9e2690feba704a9ab062435178685f4f to your computer and use it in GitHub Desktop.
Starting point for downlaod dev video lessons
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function goToNextLesson () { | |
const nextLesson = document.querySelector('.list-item.unlock.active ~ .list-item.unlock') | |
| |
if (nextLesson) nextLesson.click() | |
} | |
function handleDownload() { | |
let downloadLink = document.querySelector('.lesson-aside a.button') | |
downloadLink.click() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment