jQuery length property Last Updated : 11 Jul, 2023 Suggest changes Share Like Article Like Report The length property is used to count a number of the elements of the jQuery object. Syntax: $(selector).length where the selector is the object whose length is to be calculated. Return Values: It returns the length of the selector. Below is the example to show the working of the jQuery length property: Example: In this example, we are using the above-explained property. html <!DOCTYPE html> <html> <head> <script src= "https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> </script> <script> $(document).ready(function () { $("button").click(function () { document.getElementById("Geeks").innerHTML = "<br>" + $("p").length }); }); </script> </head> <body> <p style="color:green"> GeeksforGeeks</p> <p style="color:green">Sudo</p> <p style="color:green">Code</p> <p style="color:green">Gate</p> <button>Click on the button to get the number of "p" elements </button> <div id="Geeks"></div> </body> </html> Output: C Code_Mech Follow 0 Article Tags : JQuery jQuery-Propertie Explore jQuery Tutorial 7 min read Getting Started with jQuery 4 min read jQuery Introduction 7 min read jQuery Syntax 2 min read jQuery CDN 4 min read jQuery SelectorsJQuery Selectors 5 min read jQuery * Selector 1 min read jQuery #id Selector 1 min read jQuery .class Selector 1 min read jQuery EventsjQuery Events 4 min read jQuery bind() Method 2 min read jQuery blur() Method 1 min read jQuery change() Method 2 min read jQuery EffectsjQuery animate() Method 2 min read jQuery clearQueue() Method 2 min read jQuery delay() Method 2 min read jQuery HTML/CSSjQuery addClass() Method 2 min read jQuery after() Method 1 min read jQuery append() Method 2 min read jQuery TraversingjQuery | Traversing 4 min read jQuery add() method 1 min read jQuery addBack() Method 2 min read My Profile ${profileImgHtml} My Profile Edit Profile My Courses Join Community Transactions Logout Like