Skip to content

Instantly share code, notes, and snippets.

@beatak
Created May 5, 2016 22:08
Show Gist options
  • Save beatak/72a3093de5d61feb25851514f5f8cd84 to your computer and use it in GitHub Desktop.
Save beatak/72a3093de5d61feb25851514f5f8cd84 to your computer and use it in GitHub Desktop.
for ghetto print debug
var serializeDOM = function (dom) {
var result = [];
result.push(dom.tagName.toLowerCase());
if (dom.id) {
result.push('id="' + dom.id + '"');
}
if (dom.className) {
result.push('class="' + dom.className + '"');
}
return '<' + result.join(' ') + '>';
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment