Loop through each tag : each « jQuery « JavaScript DHTML






Loop through each tag

     

<html>
  <head>
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){
             $("*", document.body).each(function () {
                  var parentTag = $(this).parent().get(0).tagName;
                  alert(parentTag);
                  
             });
        });
    </script>
    <style>
      .y { background:yellow; }
  </style>

  </head>
  <body>
    <body>
       <div><button disabled="disabled">First</button> <span class="selected"></span>
            <span></span>
       </div>

  </body>
</html>

   
    
    
    
    
  








Related examples in the same category

1.each function callback
2.Each span tag
3.For each array element
4.For each function with index and value
5.Use Each Function To loop through Selected Item
6.Each function and array
7.Each function and map array
8.Use 'return' to break out of each() loops early.
9.Get each loop index
10.Use foreach to create li
11.Hard code value into each function
12.Append value with each function
13.Return true as continue statement
14.Use each function to add class