.each() iterates for each matched element.
Syntax
$(selector).each(function(index,element))
For example, in the following piece of code, on the click of button, text of each list item will be displayed
jquery Example
$("button").click(function(){
$("li").each(function(){
alert($(this).text())
});
});
Leave a comment