Advertisement
GochiSiyan

redirect page

Sep 13th, 2021
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. document.querySelectorAll('.jpw-wrapper .package-button .button').forEach(function(value){
  2. dupes = value.cloneNode(true);
  3. dupes.addEventListener('click', function(e){
  4. e.preventDefault();
  5. window.location = 'test.com';
  6. });
  7. value.parentNode.replaceChild(dupes, value);
  8. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement