Get first element in query set : get « jQuery « JavaScript Tutorial






<html>
  <head>
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){
           var mappedItems = $("li").map(function (index) {
              var data = $("<li>").text($(this).text()).get(0);
              data = [data,$("<li>").get(0)];
              $(data[0]).append("*");
              return data;
           });
           $("#results").append(mappedItems);
        });
    </script>
  </head>
  <body>
    <body>
      <ul>
        <li>asdf</li>
        <li>asdf</li>
        <li>asdf</li>
      </ul>
      <ul id="results">
      </ul>
  </body>
</html>








30.45.get
30.45.1.Get first element in query set
30.45.2.Get tag first parent
30.45.3.Uses the built-in reverse-method to reverse array
30.45.4.Gives the tag name of the element clicked on.