Skip to content

Instantly share code, notes, and snippets.

@yuji314159
Last active December 17, 2015 12:39
Show Gist options
  • Save yuji314159/5611571 to your computer and use it in GitHub Desktop.
Save yuji314159/5611571 to your computer and use it in GitHub Desktop.
javascript:
$.each($('tr.dat'), function(i, e) {
if (
!$('td:eq(1)', e)[0].innerText.match(/s13\w\w\d\d\d/) ||
!$('td:eq(3)>span', e)[0].innerText.match(/.*Accepted.*/)
) {
$(e).css('display', 'none');
}
});
void(0)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment