CollectionExtensions
A bunch of methods for getting DOM elements.
Determines if the current filter settings includes the provided
node.
Returns the concatenation of the provided enumerable with the
specified element.
Gets an element by its ID.
Gets the element with the provided id, if any. Otherwise the
element with the same name is searched.
public static IEnumerable<T> GetElements<T>(this INode parent, bool deep = true, Predicate<T> predicate = null) where T : INode
Gets the descendents from the provided parent that fulfill the
specified predicate, if any.
public static IEnumerable<T> GetElements<T>(this INode parent, FilterSettings filter) where T : INode
Gets the elements that satisfy the provided filter settings.
Gets a list of HTML elements given by their name attribute.