Skip to content

Instantly share code, notes, and snippets.

@xiaoda
Created January 27, 2016 13:20
Show Gist options
  • Save xiaoda/2b4569bc882c969945d3 to your computer and use it in GitHub Desktop.
Save xiaoda/2b4569bc882c969945d3 to your computer and use it in GitHub Desktop.
var wark_the_DOM = function walk(node, func) {
func(node);
node = node.firstChild;
while (node) {
walk(node, func);
node = node.nextSibling;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment