/// <summary> /// Reduce the set of matched elements to those that match the action or pass the function's test. /// </summary> public static JquerySelectorExtend Filter(this JquerySelectorExtend original) { return(original.Filter(null)); }
/// <summary> /// Reduce the set of expression to those that match the action or pass the function's test. /// </summary> public static JquerySelectorExtend Filter(this JquerySelectorExtend original, JqueryExpression expression) { return(original.Filter(selector => selector.Expression(expression))); }
/// <summary> /// Reduce the set of expression to those that match the action or pass the function's test. /// </summary> public static JquerySelectorExtend Filter(this JquerySelectorExtend original, B bOfClass) { return(original.Filter(selector => selector.Class(bOfClass))); }
/// <summary> /// Reduce the set of tag to those that match the action or pass the function's test. /// </summary> public static JquerySelectorExtend Filter(this JquerySelectorExtend original, HtmlTag tag) { return(original.Filter(selector => selector.Tag(tag))); }