Mega Code Archive

 
Categories / JavaScript Tutorial / JQuery
 

Is jQuery ready

< html>   <head>     <script type="text/javascript" src="js/jquery-1.3.2.js"></script>     <script type="text/javascript">         $(document).ready(function(){       var $ = 'Hi!';       jQuery(function($){         alert('$ = '+ $);       });         });     </script>   </head>   <body>     <body>         <p id="followMe">Follow me!</p>     </body> </html>