what's wrong with this setup?
Hello - What's wrong with the following setup? When I press F12, I can see in the script debugger that the jquery reference and html/script below has been loaded. However, I expect an alert to display "document is ready" but that's not happening. Any idea what the problem might be with the setup below?:
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js">
<script>
$(function() {
alert('document is ready');
});
</script>
</head>
</html>