Mega Code Archive

 
Categories / JavaScript Tutorial / JQuery
 

Click to add border

< 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 () {               $(this).css({"border-style": "inset", cursor:"default"});                           });         });     </script>   </head>   <body>     <body>       Press each to see the text.       <div>asdf</div>       <div>sdf</div>       <div>df</div>       <div>sdf</div>       <div>asdf</div>       <p></p>   </body> </html>