Guest User

Untitled

a guest
Jun 19th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. $("a").each(function() {
  2. var href = this.href;
  3. $(this).closest("tr").click(function(){
  4. window.location = href;
  5. });
  6. });
Add Comment
Please, Sign In to add comment