findManyByAttribute method

Iterable<TagNode> findManyByAttribute(
  1. String attr,
  2. String value
)

Find all child elements with a name.

Implementation

Iterable<TagNode> findManyByAttribute(String attr, String value) => findTags((e) => e.attributeIs(attr, value));