Last active
July 22, 2020 11:22
-
-
Save arashbehmand/681012654b67d0761aabcac486950c78 to your computer and use it in GitHub Desktop.
jquery to select all faradars courses from email
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $('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