Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Delete the whole current page
- document.body.innerHTML = '';
- // Create a big button element
- const button = document.createElement('button');
- button.innerText = 'Click to get Rickrolled';
- button.style.fontSize = '36px';
- button.style.padding = '20px';
- button.style.margin = '50px';
- button.style.backgroundColor = 'red';
- button.style.color = 'white';
- button.style.borderRadius = '10px';
- // Add a click event listener to the button that redirects to the Rickroll
- button.addEventListener('click', () => {
- window.location.href = 'https://www.youtube.com/watch?v=dQw4w9WgXcQ';
- });
- // Add the button element to the body of the page
- document.body.appendChild(button);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement