Advertisement
Guest User

Untitled

a guest
Oct 24th, 2014
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. $currentTR = $(this).parents('tr');
  2.  
  3. $nextTR = $(this).parents('tr').next();
  4. $nextTR = $(this).parents('tr').next('tr');
  5.  
  6. $nextTR = $(this).parents('tr').next('.concept');
  7. $nextTR = $(this).parents('tr').next('tr .concept');
  8.  
  9. $("p").next(".selected").css("background", "yellow");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement