Is jQuery ready : jQuery « jQuery « JavaScript DHTML
- JavaScript DHTML
- jQuery
- 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>
Related examples in the same category