Mega Code Archive

 
Categories / JavaScript Tutorial / JQuery
 

Trigger the select event on all input elements

< 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").show().fadeOut(1000);              });             $("input").select();         });     </script>   </head>   <body>     <body>     <input type="text" value="Some text" />      <div></div>     </body> </html>