jQuery Traversing - Filtering

jQuery is a JavaScript Library.
jQuery greatly simplifies JavaScript programming.
jQuery is easy to learn.
Post Reply
Guest

jQuery Traversing - Filtering

Post by Guest »

jQuery Traversing - Filtering


The first(), last(), eq(), filter() and not() Methods
The most basic filtering methods are first(), last() and eq(), which
allow you to select a specific element based on its position in a group of
elements.
Other filtering methods, like filter() and not() allow you to select elements
that match, or do not match, a certain criteria.

jQuery first() Method
The first() method returns the first element of the specified elements.
The following example selects the first <div>
element:

Example

$(document).ready(function(){  $("div").first();});
Try it Yourself »


jQuery last() Method
The last() method returns the last element of the specified elements.
The following example selects the last <div>
element:

Example

$(document).ready(function(){  $("div").last();});
Try it Yourself »








jQuery eq() method
The eq() method returns an element with a specific index number of the
selected elements.
The index numbers start at 0, so the first element will have the index number
0 and not 1. The following example selects the second <p> element (index number
1):

Example

$(document).ready(function(){  $("p").eq(1);});
Try it Yourself »


jQuery filter() Method
The filter() method lets you specify a criteria. Elements that do not match
the criteria are removed from the selection, and those that match will be
returned.
The following example returns all <p> elements with class name "intro":

Example

$(document).ready(function(){  $("p").filter(".intro");});
Try it Yourself »


jQuery not() Method
The not() method returns all elements that do not match the criteria.
Tip: The not() method is the opposite of filter().
The following example returns all <p> elements that do not have class name
"intro":

Example

$(document).ready(function(){  $("p").not(".intro");});
Try it Yourself »


jQuery Exercises

Test Yourself With Exercises

Exercise:
Use a jQuery method to get the first <div> element in the document.


$("div").();



Submit Answer »
Start the Exercise



jQuery Traversing Reference
For a complete overview of all jQuery Traversing methods, please go to our
jQuery Traversing Reference.













+1

Reference: https://www.w3schools.com/jquery/jquery ... tering.asp
jonsen
Posts: 0
Joined: Thu May 08, 2025 12:21 pm

Re: <t>jQuery Traversing - Filtering</t>

Post by jonsen »

Zdravím komunitu z Jihlavy! Našel jsem tuhle stránku přes doporučení v jednom herním magazínu a fakt to stálo za to. Měl jsem špatnou šňůru proher a moje sázky v kasinu byly doteď spíš tragické. Pak jsem ale zapnul spinogambino casino a štěstí se unavilo. Na automatech online mi padla suma, která smazala všechny mé dřívější trable. Poker je tam taky velmi kvalitní a celkově mě tenhle web baví víc než ostatní.
alexseen
Posts: 0
Joined: Fri Dec 27, 2024 6:00 pm

Re: <t>jQuery Traversing - Filtering</t>

Post by alexseen »

Een paar weken geleden zat ik thuis met een oude klasgenoot en we praatten over verschillende websites voor entertainment. Ik wilde zelf ook een online casino site ontdekken. Tijdens zoeken kwam ik crystal roll tegen en keek rustig rond. De site heeft veel slots en sportweddenschappen. Voor gebruikers uit Nederland zijn er tips, uitleg en aanbiedingen zodat je beter begrijpt hoe alles werkt. Het werd een leuke manier om de avond door te brengen en even te ontspannen.
Post Reply