Skip to content

Instantly share code, notes, and snippets.

@shikumiya-hata
Created November 20, 2020 09:21
Show Gist options
  • Save shikumiya-hata/a35b40df0cff369d26a703e0932a93fa to your computer and use it in GitHub Desktop.
Save shikumiya-hata/a35b40df0cff369d26a703e0932a93fa to your computer and use it in GitHub Desktop.
EDINETの「有価証券届出書」一覧を「新規公開時」のみにフィルタするスクリプトです。
$('#control_object_class1 > div > div.result > table > tbody > tr > td:nth-child(2) > a').each(function() { if ($(this).text().indexOf('新規公開時') < 0) { $(this).parent().parent().hide() } })
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment