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 length Property</h1> <p>Alert the no of Fruits</p> <button>Click Me</button> <ul> <li>Apple</li> <li>Banana</li> <li>Cheery</li> </ul> <script> $(document).ready(function(){ $("button").click(function(){ alert($("ul li").length); }); }); </script> </body> </html>
OUTPUT
×

Save as Private