Last active
November 13, 2019 16:42
-
-
Save da411d/210d6556b88cc022f31d4a992fdfd505 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var yourWindow = window.open("", "hide_referrer"); | |
yourWindow.opener = null; | |
yourWindow.document.open(); | |
yourWindow.document.writeln('<!DOCTYPE html><html><head></head><body>123</body></html>'); | |
yourWindow.document.close(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment