HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> </head> <body> <h1>jQuery each() Method</h1> <ul> <li>Apple</li> <li>Banana</li> <li>Cherry</li> </ul> <p>Click on the button and check your console</p> <button>Click Me</button> <script> $(document).ready(function(){ $("button").click(function(){ $("li").each(function(){ console.log($(this).text()); }); }); }); </script> </body> </html>
OUTPUT
×

Save as Private