Skip to content

Instantly share code, notes, and snippets.

@ajhsu
Last active January 28, 2023 15:33
Show Gist options
  • Save ajhsu/d89e4bbf827fbd4b42f9ab2e3cd70e4b to your computer and use it in GitHub Desktop.
Save ajhsu/d89e4bbf827fbd4b42f9ab2e3cd70e4b to your computer and use it in GitHub Desktop.
document.createElement proxy function
var __createElement__ = document.createElement;
document.createElement = function(tagName, options){
console.log(`Element <${tagName}> created.`);
return __createElement__.call(this, tagName, options);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment