/// <summary>
 ///     Get the current computed width for the first element in the set of matched elements, including padding but not border.
 /// </summary>
 public static JquerySelectorExtend InnerWidth(this JquerySelectorExtend selector)
 {
     return(selector.Method("innerWidth"));
 }
 /// <summary>
 ///     Get the determine whether any of the matched elements are assigned the given class.
 /// </summary>
 public static JquerySelectorExtend HasClass(this JquerySelectorExtend selector, B @class)
 {
     return(selector.Method("hasClass", Selector.Jquery.Class(@class).ToSelector().Replace(".", string.Empty)));
 }
 /// <summary>
 ///     Get the current computed height for the first element in the set of matched elements, including padding but not border.
 /// </summary>
 public static JquerySelectorExtend InnerHeight(this JquerySelectorExtend selector)
 {
     return(selector.Method("innerHeight"));
 }
 /// <summary>
 ///     Get the value of an attribute for the first element in the set of matched elements every matched element.
 /// </summary>
 public static JquerySelectorExtend FormIsValid(this JquerySelectorExtend selector)
 {
     return(selector.Method("valid"));
 }
 /// <summary>
 ///     Get the value of a style property for the first element in the set of matched elements every matched element.
 /// </summary>
 public static JquerySelectorExtend Css(this JquerySelectorExtend selector, string css)
 {
     return(selector.Method("css", css));
 }
 /// <summary>
 ///     Get the value of a style property for the first element in the set of matched elements every matched element.
 /// </summary>
 public static JquerySelectorExtend Css(this JquerySelectorExtend selector, CssStyling css)
 {
     return(Css(selector, css.ToJqueryString()));
 }
 /// <summary>
 ///     Get the value of an attribute for the first element in the set of matched elements every matched element.
 /// </summary>
 public static JquerySelectorExtend Attr(this JquerySelectorExtend selector, string attr)
 {
     return(selector.Method("attr", attr));
 }
 /// <summary>
 ///     Get the combined text contents of each element in the set of matched elements, including their descendants
 /// </summary>
 public static JquerySelectorExtend Text(this JquerySelectorExtend selector)
 {
     return(selector.Method("text"));
 }