Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@szhu
Created July 14, 2015 04:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save szhu/acffe6a8d1fd5841395a to your computer and use it in GitHub Desktop.
Save szhu/acffe6a8d1fd5841395a to your computer and use it in GitHub Desktop.
edX tasks
// https://studio.edx.org/videos/ORG/COURSE/SEM
$(".js-table-body > tr").each(function(i, e) {
if ($(e).find(".status-col").text() === "Uploading") return;
if ($(e).find(".status-col").text() === "In Progress") return;
console.log($(e).find(".name-col").text());
});
undefined;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment