
Get the li count of a specific ul in javascript
Created at 04-Jul-2022 ,
By samar
Get the li count of a specific ul in javascript
In this article, we will see how to solve "Get the li count of a specific ul in javascript".
I want to get the count of all LI (List item) of a specific UL in Javascript. How can i get the count of the all list item by targeting an unordered list of HTML.-
<ul id="ul_list"> <li>Lorem ipsum dolor sit amet consectetuer.</li> <li>Aenean commodo ligula eget dolor.</li> <li>Aenean massa cum sociis natoque penatibus.</li> </ul> <script> var listCount = document.getElementById("ul_list").getElementsByTagName("li").length; alert(listCount); </script>
It will return the count of all (LI) items of an UL.
If you like what you are reading, please consider buying us a coffee ( or 2 ) as a token of appreciation.
Don't forget to share this article! Help us spread the word by clicking the share button below.
We appreciate your support and are committed to providing you valuable and informative content.
We are thankful for your never ending support.
Random Code Snippet Queries: Javascript
- Hide div on click outside of element in javascript/jQuery
- How to get the length of a number in JavaScript
- Animating numbers counting Javascript
- How can I add a key/value pair to a JavaScript object
- How to add a property to object with condition in javascript
- How to push string in an array in Javascript
- Javascript get data-id attribute value
- Execute function with condition in javascript
- How to check caps lock is on in javascript
- How to check file is an image in javascript using filename
- How to use JavaScript to search for items in a list
- JavaScript test() Method
- Json stringify
- How to display an image in Javascript onclick
- On click enter redirect to another URL with parameters in javascript
- Cropper js with multiple images
- Javascript get only 10 characters from string
- ReferenceError: $ is not defined
- How to pass array as arguments to function in javascript
- Get hostname from URL in javascript
- Javascript to print Fibonacci series upto 15 Observations
- How to set href value of anchor tag in javascript
- Prism js horizontally overflowing its container
- Uncaught TypeError: Illegal invocation
- Short-circuits conditionals