Nodejs Utililty Methods NodeList Search

List of utility methods to do NodeList Search

Description

The list of methods to do NodeList Search are organized into topic(s).

Method

find(id)
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];
};