Skip to content

Instantly share code, notes, and snippets.

@elbywan
Created June 7, 2018 08:40
Show Gist options
  • Save elbywan/d3c853259940fd0ac8a9315f0c360389 to your computer and use it in GitHub Desktop.
Save elbywan/d3c853259940fd0ac8a9315f0c360389 to your computer and use it in GitHub Desktop.
const createElementBackup = document.createElement
document.createElement = function(...args) {
// If this is not a script tag, bypass
if(args[0].toLowerCase() !== 'script')
// Binding to document is essential
return createElementBackup.bind(document)(...args)
const scriptElt = createElementBackup.bind(document)(...args)
// Do some magic, see below
return scriptElt
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment