Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- document.querySelectorAll('.jpw-wrapper .package-button .button').forEach(function(value){
- dupes = value.cloneNode(true);
- dupes.addEventListener('click', function(e){
- e.preventDefault();
- window.location = 'test.com';
- });
- value.parentNode.replaceChild(dupes, value);
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement