troptrop

Homepage functions

Mar 6th, 2024
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <ul>
  2. <button onclick="myFunction()">Seattle</button>
  3. <button onclick="randomFunction()">Go to Random Link</button>
  4. </ul>
  5.  
  6. <script>
  7. function myFunction() {
  8. document.body.style.backgroundImage = "url(seattle.jpg)";
  9. }
  10. function randomFunction(){
  11. var element = document.getElementsByClassName('link');
  12. var random = Math.floor(Math.random() * 10);
  13. window.open(element[random].getAttribute("href"));
  14. }
  15. </script>
Advertisement
Add Comment
Please, Sign In to add comment