JavaScript Tutorial/jQuery/live

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

Binds a handler to an event (like click) for all current and future matched element

   <source lang="javascript">

<html>

 <head>
   <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
   <script type="text/javascript">
   
       $(document).ready(function(){
             $("div").live("click", function(){
$(this).after("

Another paragraph!

");
             });
       });
   </script>
 </head>
 <body>
   <body>

header 1

   </body>

</html></source>