Skip to content

Instantly share code, notes, and snippets.

@UlisesGascon
Created May 7, 2017 11:37
Show Gist options
  • Save UlisesGascon/dd7b24c53978b997f8c7ecafd3e2f3ca to your computer and use it in GitHub Desktop.
Save UlisesGascon/dd7b24c53978b997f8c7ecafd3e2f3ca to your computer and use it in GitHub Desktop.
inyectar un script
var head = document.getElementsByTagName('head')[0];
var script = document.createElement('script');
script.type = 'text/javascript';
script.onload = function() {
callFunctionFromScript();
}
script.src = 'path/to/your-script.js';
head.appendChild(script);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment