Example #1
0
 /// <summary>
 /// Prepend content returned from the specified function to the beginning of each element
 /// of the matching elements.
 /// </summary>
 /// <param name="contentFunction">The function that returns the content to prepend.</param>
 /// <returns>The current jElement</returns>
 public jElement prepend(StringFunctionWithContext contentFunction) {
     return null;
 }
Example #2
0
 /// <summary>
 /// Sets the specified CSS attribute value to the values returned by the
 /// specified function on the set of matched elements.
 /// </summary>
 /// <param name="attributeName">The name of the CSS attribute to set.</param>
 /// <param name="valueFunction">The function returning attribute values.</param>
 /// <returns>The current jElement.</returns>
 public jElement css(string attributeName, StringFunctionWithContext valueFunction) {
     return null;
 }
Example #3
0
 /// <summary>
 /// Sets the HTML content of the matched set of elements by calling the specified
 /// function.
 /// </summary>
 /// <param name="htmlFunction">The function that returns the HTML content.</param>
 /// <returns>The current jElement.</returns>
 public jElement html(StringFunctionWithContext htmlFunction) {
     return null;
 }
Example #4
0
 /// <summary>
 /// Insert content returned from the specified function after each element
 /// of the matching elements.
 /// </summary>
 /// <param name="contentFunction">The function that returns the content to insert.</param>
 /// <returns>The current jElement</returns>
 public jElement after(StringFunctionWithContext contentFunction) {
     return null;
 }
Example #5
0
 /// <summary>
 /// Sets the specified attributes to the value returned from the specified function.
 /// </summary>
 /// <param name="attributeName">The name of the attribute to set.</param>
 /// <param name="attrFunction">The function returning the attribute values.</param>
 /// <returns>The current jElement.</returns>        
 public jElement attr(string attributeName, StringFunctionWithContext attrFunction) {
     return null;
 }
Example #6
0
 /// <summary>
 /// Adds the CSS class returned by the specified function.
 /// </summary>
 /// <param name="cssFunction">The function that returns the CSS class to add.</param>
 /// <returns>The current jElement.</returns>
 public jElement addClass(StringFunctionWithContext cssFunction) {
     return null;
 }
Example #7
0
 /// <summary>
 /// Wraps an HTML structure around each of the matched set of elements as
 /// returned from the specified wrapping function.
 /// </summary>
 /// <param name="wrappingFunction">The functio returning the HTML to wrap with.</param>
 /// <returns>The current jElement.</returns>
 public jElement wrap(StringFunctionWithContext wrappingFunction) {
     return null;
 }
Example #8
0
 /// <summary>
 /// Sets the value attribute of the matched set of elements using values returned
 /// from the specified function.
 /// </summary>
 /// <param name="valueFunction">The function returning the values to set.</param>
 /// <returns>The current jElement.</returns>        
 public jElement val(StringFunctionWithContext valueFunction) {
     return null;
 }
Example #9
0
 /// <summary>
 /// Sets the text content of the matched set of elements by calling the specified
 /// function.
 /// </summary>
 /// <param name="textFunction">The function that returns the text content.</param>
 /// <returns>The current jElement.</returns>
 public jElement text(StringFunctionWithContext textFunction) {
     return null;
 }
Example #10
0
 /// <summary>
 /// Replace each element in the set of matched elements with the content returned from
 /// the specified function.
 /// </summary>
 /// <param name="contetntFunction">The functio returning the HTML to replace with.</param>
 /// <returns>The current jElement.</returns>
 public jElement replaceWith(StringFunctionWithContext contetntFunction) {
     return null;
 }