Advertisement
Guest User

Untitled

a guest
Sep 19th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. // koodit:
  2. $('a[title="Näytä opintojakson tiedot"] > span').each(function () {
  3. console.log($(this).text())
  4. });
  5.  
  6. // nimet:
  7. $('a[title="Näytä opintojakson tiedot"] > span').each(function () {
  8. console.log( $( $(this).closest(".td_top").siblings()[2] ).find("span").text() )
  9. });
  10.  
  11. // nopat:
  12. $('.kutistettuSoluOikea').each(function () {
  13. console.log( $(this).text() )
  14. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement