I have a very simple jquery test page, and I can't get even the basics to work.
<html>
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
<script type="text/javascript">
$(function(){
alert('hi');
});
</script>
</head>
<body>
This is a test
</body>
</html>
Basically, I just want the warning window to appear when the page is ready.
There are no errors on the page, but the warning window does not appear. I think this is a very, very simple page, so I'm not sure what I am missing. Does anyone have any ideas?
stuck source
share