Guest User

Untitled

a guest
Nov 22nd, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.  
  5. <script type="text/javascript" src="http://code.jquery.com/jquery-1.10.1.js"></script>
  6.  
  7. <title>TestBase</title>
  8.  
  9. <script type='text/javascript'>//<![CDATA[
  10. $(window).load(function(){
  11. var links = [
  12. "http://vetteletters.nl",
  13. "http://todont.co",
  14. "http://planetx.nl/titles"
  15. ];
  16. $("#rnd_link").click(function(){
  17. window.open(links[Math.floor((Math.random()*3))]);
  18. });
  19. });//]]>
  20.  
  21. </script>
  22.  
  23.  
  24. </head>
  25.  
  26. <body>
  27.  
  28. <button id="rnd_link">Random</button>
  29.  
  30. </body>
  31.  
  32. </html>
Add Comment
Please, Sign In to add comment