Last active
August 14, 2020 17:47
-
-
Save csharpforevermore/f738ca100ef2dec13a2815d91debbff5 to your computer and use it in GitHub Desktop.
This is a jQuery snippet that, when used during a Pluralsight video, will output the Table of Contents text to the debugger console window. I recommend using it with a browser plugin or extension that injects JQuery into the current web page.
This file contains hidden or 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
$('span.u-truncate').each(function(index){ console.log($(this).text()); }) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment