Mega Code Archive

 
Categories / JavaScript Tutorial / JQuery
 

Text box selected event

< html>   <head>     <script type="text/javascript" src="js/jquery-1.3.2.js"></script>     <script type="text/javascript">         $(document).ready(function(){             $(":input").select( function () {                    $("div").text("selected");              });         });     </script>   </head>   <body>     <body>     <input type="text" value="Some text" />      <div></div>     </body> </html>