class Nokogiri::XML::NodeSet

def remove_attr(name)

Remove the attributed named +name+ from all Node objects in the NodeSet
##
def remove_attr(name)
  each { |el| el.delete(name) }
  self
end