jquery .each()

.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

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Create a free website or blog at WordPress.com.

Up ↑

Design a site like this with WordPress.com
Get started