removeAttr
This method can be used to remove an attribute from the elements in the collection.
// Remove an attribute from the elements
removeAttr: function(name) {
this.elements.forEach(function(element) {
element.removeAttribute(name);
});
return this;
}