Skip to content

Instantly share code, notes, and snippets.

@zdying
Created August 25, 2014 05:47
Show Gist options
  • Save zdying/ebd0ca72dde5253966fd to your computer and use it in GitHub Desktop.
Save zdying/ebd0ca72dde5253966fd to your computer and use it in GitHub Desktop.
Evaluates a script in a global context
// from jQuery
// Evaluates a script in a global context
globalEval: function( code ) {
var script = document.createElement( "script" );
script.text = code;
document.head.appendChild( script ).parentNode.removeChild( script );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment