JavaScript Tutorial/jQuery/end

Материал из Web эксперт
Перейти к: навигация, поиск

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

   <source lang="javascript">

<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>

Hello, how are you?

   </body>

</html></source>