Guest User

Untitled

a guest
Jan 22nd, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. (e) => {
  2. var target = e.target;
  3.  
  4. var url = target.getAttribute('href') + '?' + '<serialized data here>';
  5.  
  6. target.setAttribute('target', '_blank');
  7. target.setAttribute('href', url);
  8.  
  9. // Let the event take care of the rest :D
  10. }
Add Comment
Please, Sign In to add comment