jQuery each() Method
Example
Alert the text of each <li> element:
$("button").click(function(){
$("li").each(function(){
alert($(this).text())
});
});
Try it Yourself »
Definition and Usage
The each() method specifies a function to run for each matched element.
Tip: return false can be used to stop the loop early.
Syntax
$(selector).each(function(index,element))
Parameter | Description |
---|---|
function(index,element) | Required. A function to run for each matched element.
|