/// <summary>
 ///     Get the ancestors of each element in the current set of matched elements, up to but not including the element
 ///     matched by the action, DOM node, or jQuery object
 /// </summary>
 public static JquerySelectorExtend ParentsUntil(this JquerySelectorExtend original)
 {
     return(original.ParentsUntil(null));
 }