Guest User

Untitled

a guest
Dec 14th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. $('table > tbody tr').each(function() {
  2. var counter = 0;
  3. var ccc;
  4. $('td.form a:nth-child(1), td.form a:nth-child(2), td.form a:nth-child(3),td.form a:nth-child(4)').each(function() {
  5. if(( $(this).hasClass("form-win") ) || ( $(this).hasClass("form-loss") )) {
  6. $(this).css('background','red');
  7. counter++;
  8. ccc = $(this).closest('tr.team_rank').find('td.team a').text();
  9. $('results').append(ccc);
  10. }
  11. else {
  12. $(this).css('background','blue');
  13. }
  14. });
  15. });
Add Comment
Please, Sign In to add comment