Skip to content

Instantly share code, notes, and snippets.

@jakl
Last active December 14, 2015 04:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jakl/5026247 to your computer and use it in GitHub Desktop.
Save jakl/5026247 to your computer and use it in GitHub Desktop.
show props on window
<script src='//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js'></script>
<script src='index.js'></script>
$(function(){
for (i in window) {
$('<div>' + i + '</div>').appendTo('body');
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment