Get first child ID : Selector first last « jQuery « JavaScript DHTML






Get first child ID

     


<html>
  <head>
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){
           $("#container").click(function (e) {
              var $ch = $(e.target).children();
              
              $("#results span:first").text($ch.length);
              
              e.preventDefault();
              return false;
            });

        });
    </script>
  </head>
  <body>
    <body>
    <div id="container">
        <div>
          <p>This <span>is the <em>way</em> we</span> 
          write <em>the</em> demo,</p>
        </div>
        
    </div>
    <span id="results">Found <span>0</span> children in <span>TAG</span>.</span>
  </body>
</html>

   
    
    
    
    
  








Related examples in the same category

1.Get first paragraph
2.Select first span
3.lastChild() : One for each parent.
4.firstChild(): One for each parent.
5.Get last paragraph
6.Matches the first selected element
7.last() matches the last selected element.
8.first() matches only a single element
9.Matches the last selected element