Skip to content

Instantly share code, notes, and snippets.

@viral-patel
viral-patel / PluralSight-2019.js
Last active November 16, 2019 09:47
Javascript Code to Download a Pluralsight course and it's Table of Contents.
// Credit : Modified code found on internet by google search :)
// Go to the course page ( After clicking "Start Course" or "Resume Course"
// Run this Code Snippet in browser dev console to get table of contents
// Updated on 16th November 2019
var list1 = document.getElementsByClassName('table-of-contents')[0];
var counter=0;
var list = list1.getElementsByClassName('module');
for (var i=0; i<list.length; i++) {