I am trying to reference the jQuery library in my master page like so:
src="<%= ResolveUrl("~/Scripts/jquery-1.2.6.js")%>" type="text/javascript">
The source for the page shows:
<script src="/DocumentManagement/Scripts/jquery-1.2.6.js" type="text/javascript"></script>
which seems to be correct since my site's url is http://servername/documentmanagement.
However I am getting errors in the javascript functions indicating that the jQuery library is not found e.g. 'Object expected'.
The same code works fine on my dev(XP - ASP.Net dev server) machine but not on a Win2003 box (IIS). What am I doing wrong?