List of utility methods to do NodeList Search
NodeList.prototype.find = HTMLCollection.prototype.find = function(id) { for(var i = this.length - 1; i >= 0; i--) { if(this[i] && this[i].id === id) { return this[i]; };