Last active
September 9, 2017 11:39
-
-
Save ScalableJS/43019ca911a0ebe82135638aaf2495b0 to your computer and use it in GitHub Desktop.
ReadWindowProperty
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 frame = document.createElement('iframe'); | |
document.body.appendChild(frame); | |
for(var item in window) { | |
if(frame.contentWindow[item] === undefined){ | |
console.log(item, window[item]) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment