Skip to content

Instantly share code, notes, and snippets.

@aidik
Last active January 23, 2019 15:56
Show Gist options
  • Save aidik/f67a172b9f8e927d1d4a5e207d277171 to your computer and use it in GitHub Desktop.
Save aidik/f67a172b9f8e927d1d4a5e207d277171 to your computer and use it in GitHub Desktop.
ČeskáTelevize - Get show URLs
var output = "";
jQuery(".episodes-broadcast-content a")
.each(function(a, b) {
output = output + ("https://www.ceskatelevize.cz" + jQuery(b).attr("href") + "\n");
})
.promise().done(function() {
console.log(output);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment