Guest User

Untitled

a guest
Dec 15th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <img id="target" src="something.png"/>
  2.  
  3. function closeWindow(){
  4. var theObject = document.getElementById("target");
  5.  
  6. var pressEvent = document.createEvent ("KeyboardEvent");
  7. pressEvent.initKeyEvent("keypress", true, true, window, true, false, false, false, 87, 0);
  8. theObject.dispatchEvent(pressEvent);
  9. }
Add Comment
Please, Sign In to add comment