Automobile.Mobile.Framework.JQuery.ParentSelector C# (CSharp) Méthode

ParentSelector() public static méthode

Formats a selector which is eqivalent to selecting the first parent of the child
public static ParentSelector ( string child ) : string
child string Child to select the parent of
Résultat string
        public static string ParentSelector(string child)
        {
            return string.Format(":has('{0}'):last", child);
        }