Show the order in the jQuery object. : jQuery « jQuery « JavaScript DHTML






Show the order in the jQuery object.

  
<html>
  <head>
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){
            
            var list = $("div,p,span").map(function () {
              return this.tagName;
            }).get().join(", ");
            
            
            $("b").append(document.createTextNode(list));


        });
    </script>
  </head>
  <body>
    <body>
          <span>span</span>
          <p>p</p>
          <div>div</div>
          <span>span</span>
    </body>
</html>

   
    
  








Related examples in the same category

1.If jQuery is installed and running
2.Adds two functions into the jQuery namespace.
3.Adds two plugin methods.
4.Is jQuery ready
5.Create Text node from query list
6.Pass array returned from jQuery to a function