Advertisement
Guest User

Untitled

a guest
Oct 27th, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <div class="col-md-3 white">
  2. <div class="options">
  3. <a id="emailRandomiser" href="#" class="hvr-grow">
  4. <h2>check your emails</h2>
  5. </a>
  6. </div>
  7. </div>
  8.  
  9. var pages = ["another-day.html", "not-julie.html", "the-kitchen.html", "reception.html"];
  10. document.getElementById("emailRandomiser").addEventListener("click", function() {
  11. window.location.href = pages[Math.floor(Math.random() * 4)];
  12. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement