Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

filtering jquery

$("span strong").first();   // first strong in first span
$("span strong").last();    // last strong in last span
$("div").eq(9);             // element with a specific index
$("div").filter(".big");    // all div elements with .big class
$("div").not(".big");       // opposite of filter
Source by htmlcheatsheet.com #
 
PREVIOUS NEXT
Tagged: #filtering #jquery
ADD COMMENT
Topic
Name
2+6 =