Skip to content

Instantly share code, notes, and snippets.

@skinnyfads
Forked from ajhsu/index.js
Created January 28, 2023 15:33
Show Gist options
  • Save skinnyfads/b3ceff13543ed98a54239897ee87ff29 to your computer and use it in GitHub Desktop.
Save skinnyfads/b3ceff13543ed98a54239897ee87ff29 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