Guest User

Untitled

a guest
Jul 12th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. <script type="text/javascript" src="jquery-1.3.2.min.js">
  2. </script>
  3. <script type="text/javascript">
  4.  
  5. $('document').ready(function(){
  6. count = $("div:not(:empty)").size();
  7. alert(count);
  8.  
  9. });
  10.  
  11. </script>
  12. </head>
  13. <body>
  14. <div>
  15. text
  16. </div>
  17. <div>
  18. </div>
  19. <div>
  20. text
  21. </div>
  22. </body>
Add Comment
Please, Sign In to add comment