Skip to content

Instantly share code, notes, and snippets.

@arashbehmand
Last active July 22, 2020 11:22
Show Gist options
  • Save arashbehmand/681012654b67d0761aabcac486950c78 to your computer and use it in GitHub Desktop.
Save arashbehmand/681012654b67d0761aabcac486950c78 to your computer and use it in GitHub Desktop.
jquery to select all faradars courses from email
$('a.fonttools-rtl').filter(function(){return $(this).text().includes('دانلود')}).each(function(){console.log($(this).attr('href'))})
$('div.margin-div-link>A').filter(function(){return $(this).text().includes('دانلود')}).map(function(){return $(this).attr('href')}).toArray().join('\n')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment