Skip to content

Instantly share code, notes, and snippets.

@blankyao
Created April 12, 2014 14:11
Show Gist options
  • Save blankyao/10537580 to your computer and use it in GitHub Desktop.
Save blankyao/10537580 to your computer and use it in GitHub Desktop.
get global variables in window
(function(global){
var i = document.createElement('iframe');
document.body.appendChild(i);
for(var k in global) {
if(!(k in i.contentWindow)) {
console.log(k);
}
}
document.body.removeChild(i);
})(window);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment