Advertisement
DeltaTechnology

Untitled

Apr 22nd, 2023
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. // Delete the whole current page
  2. document.body.innerHTML = '';
  3.  
  4. // Create a big button element
  5. const button = document.createElement('button');
  6. button.innerText = 'Click to get Rickrolled';
  7. button.style.fontSize = '36px';
  8. button.style.padding = '20px';
  9. button.style.margin = '50px';
  10. button.style.backgroundColor = 'red';
  11. button.style.color = 'white';
  12. button.style.borderRadius = '10px';
  13.  
  14. // Add a click event listener to the button that redirects to the Rickroll
  15. button.addEventListener('click', () => {
  16. window.location.href = 'https://www.youtube.com/watch?v=dQw4w9WgXcQ';
  17. });
  18.  
  19. // Add the button element to the body of the page
  20. document.body.appendChild(button);
  21.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement