Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save JacobLett/ee3b8e044eb9a5b758dda0e27dfefbee to your computer and use it in GitHub Desktop.
Save JacobLett/ee3b8e044eb9a5b758dda0e27dfefbee to your computer and use it in GitHub Desktop.
DOM Insert event
document.addEventListener("DOMNodeInserted",function(event){addlink(event)},false);
function addlink(event){
var node = event.target;
if(node instanceof HTMLLIElement){
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment