Guest User

Untitled

a guest
Jun 22nd, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. <h1>Hello</h1>
  2. <button id="reload">Reload</button>
  3. <script>
  4. (function(){
  5. var reloadButton = document.getElementById('reload');
  6. if (reloadButton){
  7. reloadButton.innerHTML += ' ' + Math.random();
  8. reloadButton.onclick = function(){
  9. alert('start reload!');
  10. document.location.reload();
  11. };
  12. } else {
  13. alert('nada');
  14. }
  15. })();
  16. </script>
Add Comment
Please, Sign In to add comment