Advertisement
Guest User

Untitled

a guest
Nov 20th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. function iframme() {
  2. window.location.href = "#";
  3. window.location.reload();
  4. }
  5.  
  6. var button = document.createElement('button');
  7. button.onclick = function() { iframme() };
  8. button.textContent = "Window In Window";
  9. document.body.appendChild(button);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement