Selects all paragraphs, finds span elements inside these, and reverts the selection back to the paragraphs. : end « jQuery « JavaScript Tutorial






<html>
  <head>
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){

            
              $("p").find("span").end().css("border", "2px red solid");
                
         
        });
    </script>
    <style>
      .selected { color:blue; }
      
    </style>
    
  </head>
  <body>
    <body>
          <p><span>Hello</span>, how are you?</p>
    </body>
</html>








30.34.end
30.34.1.Selects all paragraphs, finds span elements inside these, and reverts the selection back to the paragraphs.