Open.Core.Css.SelectFromId C# (CSharp) Method

SelectFromId() public static method

Performs a jQuery CSS selection with the given ID (pre-processing the ID format using the ToId() method).
public static SelectFromId ( string identifier ) : jQueryObject
identifier string The ID of the element.
return jQueryObject
        public static jQueryObject SelectFromId(string identifier)
        {
            return jQuery.Select(ToId(identifier));
        }