jQuery Traversing Methods

<div class="fixed ui-header ui-bar-inherit">
<figure><a href="//itsourcecode.com/wp-content/uploads/2016/05/jquery-javascript.png"><img class="alignnone size-full wp-image-3473" src="//itsourcecode.com/wp-content/uploads/2016/05/jquery-javascript.png" alt="jquery-javascript" width="630" height="430"></a></figure><p></p>
<p><strong>jQuery provides</strong> different <strong>traversing&nbsp;methods</strong> to help you&nbsp;select <strong>HTML elements</strong> in a page document randomly.&nbsp;Most of the <strong>Traversing&nbsp;Methods</strong> do not change&nbsp;the <strong>jQuery object</strong>&nbsp;and&nbsp;they are used to<strong> filter out HTML</strong> elements based on given conditions.</p>
<p>&nbsp;</p>
<h3 class="ui-title">These are the commonly used jQuery Traversing Methods:</h3>
<p>&nbsp;</p>
</div>
<div class="content ui-content">
<div class="ui-content">
<table id="myTable" class="ui-shadow ui-table ui-table-reflow">
<thead>
<tr style="background-color: #dedede; text-align: center;">
<td>Method</td>
<td>Description</td>
</tr>
</thead>
<tbody>
<tr class="odd">
<td><b class="ui-table-cell-label"></b>add()</td>
<td><b class="ui-table-cell-label"></b>Adding elements to the set of matched elements</td>
</tr>
<tr>
<td><b class="ui-table-cell-label"></b>addBack()</td>
<td><b class="ui-table-cell-label"></b>adding previous set of elements to the current set</td>
</tr>
<tr class="odd">
<td><b class="ui-table-cell-label"></b>andSelf()</td>
<td><b class="ui-table-cell-label"></b>Deprecated in version 1.8. An alias for addBack()</td>
</tr>
<tr>
<td><b class="ui-table-cell-label"></b>children()</td>
<td><b class="ui-table-cell-label"></b>Returning all direct children of the selected element</td>
</tr>
<tr class="odd">
<td><b class="ui-table-cell-label"></b>closest()</td>
<td><b class="ui-table-cell-label"></b>Returning the first ancestor of the selected element</td>
</tr>
<tr>
<td><b class="ui-table-cell-label"></b>contents()</td>
<td><b class="ui-table-cell-label"></b>Returning all direct children of the selected element (including text and comment nodes)</td>
</tr>
<tr>
<td><b class="ui-table-cell-label"></b>map()</td>
<td><b class="ui-table-cell-label"></b>Pass each element in the matched set through a function, producing a new jQuery object containing the return values</td>
</tr>
<tr class="odd">
<td><b class="ui-table-cell-label"></b>next()</td>
<td><b class="ui-table-cell-label"></b>Returning the next sibling element of the selected element</td>
</tr>
<tr>
<td><b class="ui-table-cell-label"></b>nextAll()</td>
<td><b class="ui-table-cell-label"></b>NextAll() will return all next sibling elements of the selected element</td>
</tr>
<tr class="odd">
<td><b class="ui-table-cell-label"></b>nextUntil()</td>
<td><b class="ui-table-cell-label"></b>NextUntil() will return all next sibling elements between two given arguments</td>
</tr>
<tr>
<td><b class="ui-table-cell-label"></b>not()</td>
<td><b class="ui-table-cell-label"></b>Removing elements from the set of matched elements</td>
</tr>
<tr class="odd">
<td><b class="ui-table-cell-label"></b>offsetParent()</td>
<td><b class="ui-table-cell-label"></b>Returning &nbsp;first positioned parent element</td>
</tr>
<tr>
<td><b class="ui-table-cell-label"></b>parent()</td>
<td><b class="ui-table-cell-label"></b>Returning direct parent element of the selected element</td>
</tr>
<tr class="odd">
<td><b class="ui-table-cell-label"></b>each()</td>
<td><b class="ui-table-cell-label"></b>Executing function for each matched element</td>
</tr>
<tr>
<td><b class="ui-table-cell-label"></b>end()</td>
<td><b class="ui-table-cell-label"></b>Ending the most recent filtering operation in the current chain, and return the set of matched elements to its previous state</td>
</tr>
<tr class="odd">
<td><b class="ui-table-cell-label"></b>eq()</td>
<td><b class="ui-table-cell-label"></b>Returning an element with a specific index number of the selected elements</td>
</tr>
<tr>
<td><b class="ui-table-cell-label"></b>filter()</td>
<td><b class="ui-table-cell-label"></b>Reducing the set of matched elements to those that match the selector or pass the function's test</td>
</tr>
<tr class="odd">
<td><b class="ui-table-cell-label"></b>find()</td>
<td>Returning descendant elements of the selected element</td>
</tr>
<tr>
<td><b class="ui-table-cell-label"></b>first()</td>
<td><b class="ui-table-cell-label"></b>Returning the first element of the selected elements</td>
</tr>
<tr class="odd">
<td><b class="ui-table-cell-label"></b>has()</td>
<td><b class="ui-table-cell-label"></b>Returning all elements that have one or more elements inside of them</td>
</tr>
<tr>
<td><b class="ui-table-cell-label"></b>is()</td>
<td><b class="ui-table-cell-label"></b>Check the set of matched elements against a selector/element/jQuery object, and return true if at least one of these elements matches the given arguments</td>
</tr>
<tr class="odd">
<td><b class="ui-table-cell-label"></b>last()</td>
<td><b class="ui-table-cell-label"></b>Neturn the last element of the selected elements</td>
</tr>
<tr class="odd">
<td><b class="ui-table-cell-label"></b>parents()</td>
<td><b class="ui-table-cell-label"></b>Return all ancestor elements of the selected element</td>
</tr>
<tr>
<td><b class="ui-table-cell-label"></b>parentsUntil()</td>
<td><b class="ui-table-cell-label"></b>Returning all ancestor elements between two given arguments</td>
</tr>
<tr class="odd">
<td><b class="ui-table-cell-label"></b>prev()</td>
<td><b class="ui-table-cell-label"></b>Returning&nbsp;previous sibling element of the selected element</td>
</tr>
<tr>
<td><b class="ui-table-cell-label"></b>prevAll()</td>
<td><b class="ui-table-cell-label"></b>Returning all previous sibling elements of the selected element</td>
</tr>
<tr class="odd">
<td><b class="ui-table-cell-label"></b>prevUntil()</td>
<td><b class="ui-table-cell-label"></b>Returning all previous sibling elements between two given arguments</td>
</tr>
<tr>
<td><b class="ui-table-cell-label"></b>siblings()</td>
<td><b class="ui-table-cell-label"></b>Returning all sibling elements of the selected element</td>
</tr>
<tr class="odd">
<td><b class="ui-table-cell-label"></b>slice()</td>
<td><b class="ui-table-cell-label"></b>Reducing the set of matched elements to a subset specified by a range of indices</td>
</tr>
</tbody>
</table>
</div>
</div>

 

For all students who need programmer for your thesis system or anyone who needs a sourcecode in any programming languages. You can contact me @ :

Email – [email protected]
Mobile No. – 09305235027 – tnt

Leave a Comment