Get tag first parent : get « jQuery « JavaScript DHTML






Get tag first parent

    

<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.Get first element in query set
2.Uses the built-in reverse-method to reverse array
3.Gives the tag name of the element clicked on.