/// <summary>
 ///     Set one attributes for every matched element in context.
 /// </summary>
 /// <param name="key">
 ///     <see cref="CssStyling" />
 /// </param>
 /// <param name="value">
 ///     <see cref="Selector" />
 /// </param>
 public IExecutableSetting Set(CssStyling key, Selector value)
 {
     return(Set(key.ToJqueryString(), value));
 }
예제 #2
0
 /// <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()));
 }
예제 #3
0
 /// <summary>
 ///     Set one attributes for every matched element in context.
 /// </summary>
 /// <param name="key">
 ///     <see cref="CssStyling" />
 /// </param>
 /// <param name="value">
 ///     <see cref="Selector" />
 /// </param>
 public IExecutableSetting Set(CssStyling key, Selector value)
 {
     return(Set(key.ToStringLower().Replace("_", "-"), value));
 }