Skip to content

Instantly share code, notes, and snippets.

@luokebi
Created June 21, 2012 15:18
Show Gist options
  • Save luokebi/2966345 to your computer and use it in GitHub Desktop.
Save luokebi/2966345 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