hi kindly help me here.....
i have written code like this to display hi when page gets loaded.
please correct it this code so as to display message.
<html>
<head>
<script type="text/javascript" src="jquery-2.0.3.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#b").load(function(){
alert("hi");
});
});
</script>
</head>
<body>
.........
......
....
</body>
</html>