For some reason i can't seem to het jQuery to work in my asp.net page
I have sourced the jQuery library but the document.ready function never fires
i have also tried the window.load function as
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Test Page</title>
<script src="script/jquery-1.7.2.js" type="text/javascript" />
<script type="text/javascript">
$(document).ready(function () {
alert('works');
});
</script>
</head>
<body">
<form id="form1" runat="server">
<div>
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
</div>
</form>
</body>
</html>
Thanks