Mega Code Archive

 
Categories / JavaScript Tutorial / JQuery
 

Slide to show para

< html>   <head>     <script type="text/javascript" src="js/jquery-1.3.2.js"></script>     <script type="text/javascript">         $(document).ready(function(){            $("div").one('click', function () {               if ($(this).is(":first-child")) {                 $("p").text("It's the first div.");               }else{                 $("p").text("It's NOT the first div.");               }               $("p").hide().slideDown("slow");                           });         });     </script>      <style>      div { border:2px white solid;}   </style>   </head>   <body>     <body>       Press each to see the text.       <div>asdf</div>       <p></p>   </body> </html>