Пример #1
0
 ///<summary>
 /// Search for a given element from among the matched elements.
 ///</summary>
 ///<param name="element">The DOM element or first element within the jQuery object to look for.</param>
 public extern Number index(jQuery element);
Пример #2
0
 public extern static jQuery Select(jQuery @object);
Пример #3
0
 ///<summary>
 /// Insert content, specified by the parameter, to the end of each element in the set of matched elements.
 ///</summary>
 ///<param name="content">DOM element, HTML string, or jQuery object to insert at the end of each element in the set of matched elements.</param>
 ///<param name="content1">One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert at the end of each element in the set of matched elements.</param>
 public extern jQuery append(jQuery content, Element content1);
Пример #4
0
 ///<summary>
 /// Check the current matched set of elements against a selector, element, or jQuery object and return true if at least one of these elements matches the given arguments.
 ///</summary>
 ///<param name="object">An existing jQuery object to match the current set of elements against.</param>
 public extern bool @is(jQuery @object);
Пример #5
0
 ///<summary>
 /// Insert content, specified by the parameter, to the beginning of each element in the set of matched elements.
 ///</summary>
 ///<param name="content">DOM element, array of elements, HTML string, or jQuery object to insert at the beginning of each element in the set of matched elements.</param>
 ///<param name="content1">One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert at the beginning of each element in the set of matched elements.</param>
 public extern jQuery prepend(Element content, jQuery content1);
Пример #6
0
 ///<summary>
 /// Insert every element in the set of matched elements to the end of the target.
 ///</summary>
 ///<param name="target">A selector, element, HTML string, or jQuery object; the matched set of elements will be inserted at the end of the element(s) specified by this parameter.</param>
 public extern jQuery appendTo(jQuery target);
Пример #7
0
 ///<summary>
 /// Wrap an HTML structure around each element in the set of matched elements.
 ///</summary>
 ///<param name="wrappingElement">An HTML snippet, selector expression, jQuery object, or DOM element specifying the structure to wrap around the matched elements.</param>
 public extern jQuery wrap(jQuery wrappingElement);
Пример #8
0
 ///<summary>
 /// Insert every element in the set of matched elements to the beginning of the target.
 ///</summary>
 ///<param name="target">A selector, element, HTML string, or jQuery object; the matched set of elements will be inserted at the beginning of the element(s) specified by this parameter.</param>
 public extern jQuery prependTo(jQuery target);
Пример #9
0
 ///<summary>
 /// Remove elements from the set of matched elements.
 ///</summary>
 ///<param name="object">An existing jQuery object to match the current set of elements against.</param>
 public extern jQuery not(jQuery @object);
Пример #10
0
 ///<summary>
 /// Replace each element in the set of matched elements with the provided new content.
 ///</summary>
 ///<param name="newContent">The content to insert. May be an HTML string, DOM element, or jQuery object.</param>
 public extern jQuery replaceWith(jQuery newContent);
Пример #11
0
 ///<summary>
 /// Add elements to the set of matched elements.
 ///</summary>
 ///<param name="object">An existing jQuery object to add to the set of matched elements.</param>
 public extern jQuery add(jQuery @object);
Пример #12
0
 ///<summary>
 /// Get the first element that matches the selector, beginning at the current element and progressing up through the DOM tree.
 ///</summary>
 ///<param name="object">A jQuery object to match elements against.</param>
 public extern jQuery closest(jQuery @object);
Пример #13
0
 ///<summary>
 /// Get the descendants of each element in the current set of matched elements, filtered by a selector, jQuery object, or element.
 ///</summary>
 ///<param name="object">A jQuery object to match elements against.</param>
 public extern jQuery find(jQuery @object);
Пример #14
0
 ///<summary>
 /// Insert content, specified by the parameter, after each element in the set of matched elements.
 ///</summary>
 ///<param name="content">HTML string, DOM element, or jQuery object to insert after each element in the set of matched elements.</param>
 ///<param name="content1">One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert after each element in the set of matched elements.</param>
 public extern jQuery after(jQuery content, Element content1);
Пример #15
0
 ///<summary>
 /// Insert every element in the set of matched elements before the target.
 ///</summary>
 ///<param name="target">A selector, element, HTML string, or jQuery object; the matched set of elements will be inserted before the element(s) specified by this parameter.</param>
 public extern jQuery insertBefore(jQuery target);
Пример #16
0
 ///<summary>
 /// Insert content, specified by the parameter, after each element in the set of matched elements.
 ///</summary>
 ///<param name="content">HTML string, DOM element, or jQuery object to insert after each element in the set of matched elements.</param>
 ///<param name="content1">One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert after each element in the set of matched elements.</param>
 public extern jQuery after(jQuery content, jQuery content1);
Пример #17
0
 ///<summary>
 /// Insert content, specified by the parameter, before each element in the set of matched elements.
 ///</summary>
 ///<param name="content">HTML string, DOM element, or jQuery object to insert before each element in the set of matched elements.</param>
 ///<param name="content1">One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert before each element in the set of matched elements.</param>
 public extern jQuery before(jQuery content, string content1);
Пример #18
0
 ///<summary>
 /// Insert content, specified by the parameter, to the beginning of each element in the set of matched elements.
 ///</summary>
 ///<param name="content">DOM element, array of elements, HTML string, or jQuery object to insert at the beginning of each element in the set of matched elements.</param>
 ///<param name="content1">One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert at the beginning of each element in the set of matched elements.</param>
 public extern jQuery prepend(string content, jQuery content1);
Пример #19
0
 ///<summary>
 /// Insert content, specified by the parameter, before each element in the set of matched elements.
 ///</summary>
 ///<param name="content">HTML string, DOM element, or jQuery object to insert before each element in the set of matched elements.</param>
 ///<param name="content1">One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert before each element in the set of matched elements.</param>
 public extern jQuery before(jQuery content, Element content1);
Пример #20
0
 ///<summary>
 /// Insert content, specified by the parameter, to the beginning of each element in the set of matched elements.
 ///</summary>
 ///<param name="content">DOM element, array of elements, HTML string, or jQuery object to insert at the beginning of each element in the set of matched elements.</param>
 ///<param name="content1">One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert at the beginning of each element in the set of matched elements.</param>
 public extern jQuery prepend(jQuery content, jQuery content1);
Пример #21
0
 ///<summary>
 /// Insert content, specified by the parameter, before each element in the set of matched elements.
 ///</summary>
 ///<param name="content">HTML string, DOM element, or jQuery object to insert before each element in the set of matched elements.</param>
 ///<param name="content1">One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert before each element in the set of matched elements.</param>
 public extern jQuery before(jQuery content, jQuery content1);
Пример #22
0
 ///<summary>
 /// Insert content, specified by the parameter, to the end of each element in the set of matched elements.
 ///</summary>
 ///<param name="content">DOM element, HTML string, or jQuery object to insert at the end of each element in the set of matched elements.</param>
 ///<param name="content1">One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert at the end of each element in the set of matched elements.</param>
 public extern jQuery append(jQuery content, string content1);
Пример #23
0
 ///<summary>
 /// Insert every element in the set of matched elements after the target.
 ///</summary>
 ///<param name="target">A selector, element, HTML string, or jQuery object; the matched set of elements will be inserted after the element(s) specified by this parameter.</param>
 public extern jQuery insertAfter(jQuery target);
Пример #24
0
 ///<summary>
 /// Insert content, specified by the parameter, to the end of each element in the set of matched elements.
 ///</summary>
 ///<param name="content">DOM element, HTML string, or jQuery object to insert at the end of each element in the set of matched elements.</param>
 ///<param name="content1">One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert at the end of each element in the set of matched elements.</param>
 public extern jQuery append(jQuery content, jQuery content1);
Пример #25
0
 ///<summary>
 /// Insert content, specified by the parameter, after each element in the set of matched elements.
 ///</summary>
 ///<param name="content">HTML string, DOM element, or jQuery object to insert after each element in the set of matched elements.</param>
 public extern jQuery after(jQuery content);
Пример #26
0
 ///<summary>
 /// Reduce the set of matched elements to those that match the selector or pass the function's test. 
 ///</summary>
 ///<param name="object">An existing jQuery object to match the current set of elements against.</param>
 public extern jQuery filter(jQuery @object);
Пример #27
0
 ///<summary>
 /// Insert content, specified by the parameter, after each element in the set of matched elements.
 ///</summary>
 ///<param name="content">HTML string, DOM element, or jQuery object to insert after each element in the set of matched elements.</param>
 ///<param name="content1">One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert after each element in the set of matched elements.</param>
 public extern jQuery after(jQuery content, string content1);
Пример #28
0
 /// <summary>
 /// Creates a new instance of the class.
 /// </summary>
 public DivBuilder()
 {
     _jqBody = jQuery.Select(window.document.body);
 }
Пример #29
0
 public extern static jQuery Select(string selector, jQuery context);