Skip to content

Instantly share code, notes, and snippets.

@ScalableJS
Last active September 9, 2017 11:39
Show Gist options
  • Save ScalableJS/43019ca911a0ebe82135638aaf2495b0 to your computer and use it in GitHub Desktop.
Save ScalableJS/43019ca911a0ebe82135638aaf2495b0 to your computer and use it in GitHub Desktop.
ReadWindowProperty
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