jQuery calls in external js file with MasterPages - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T03:00:45Zhttp://stackoverflow.com/feeds/question/952495http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/952495/jquery-calls-in-external-js-file-with-masterpages0jQuery calls in external js file with MasterPagesJeff2009-06-04T19:08:38Z2009-06-05T15:07:44Z
<p>I am using ASP.NET 3.5 with MasterPages. My master page has the script references to jquery and jquery UI. My web page that uses the master page has a script reference for a custom javascript file for that page. This javascript file has jquery calls in it (i.e. document.ready --> set up input boxes as calendars).</p>
<p>When I run the website in debug from Visual Studio, the input boxes are not set as calendars. However, if I copy the script from the external file and include it in a script block in the web page, the input box becomes a calendar.</p>
<p>I also have an element in the child page (not sure if that makes a difference). I have referenced the external javascript file in the ScriptManager and outside of the ScriptManager and neither work.</p>
<p>Why does jQuery not work in an external javascript file when the jQuery script reference resides in the master page?</p>
<p>Any help would be appreciated.</p>
<p>Thanks</p>
<p>MASTER PAGE CODE</p>
<pre><code><head id="Head1" runat="server">
<title>Customer Agreement Lifecycle Management System </title>
<link rel="stylesheet" type="text/css" href="~/calms.css" />
<link href="css/ui-lightness/jquery-ui-1.7.1.custom.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="<%=ResolveUrl("~/js/jquery-1.3.2.min.js") %>"></script>
<script type="text/javascript" src="<%=ResolveUrl("~/js/jquery-ui-1.7.1.custom.min.js") %>"></script>
</head>
</code></pre>
<p>CHILD PAGE CODE</p>
<pre><code><asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<script src="<%=ResolveUrl("~/js/rule.js") %>" type="text/javascript"></script>
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
</code></pre>
http://stackoverflow.com/questions/952495/jquery-calls-in-external-js-file-with-masterpages/952514#9525140Answer by Jeff Johnson for jQuery calls in external js file with MasterPagesJeff Johnson2009-06-04T19:11:32Z2009-06-04T19:11:32Z<p>Is the external script include below the jquery script? Maybe it's the order in which the scripts are being loaded and run...</p>
http://stackoverflow.com/questions/952495/jquery-calls-in-external-js-file-with-masterpages/953018#9530180Answer by Damien for jQuery calls in external js file with MasterPagesDamien2009-06-04T20:52:58Z2009-06-04T21:09:44Z<p>Are you sure the reference to the jQuery file in the child object appears in the head of the HTML document?</p>
<p>If not, put a ContentPlaceHolder in the tag and put the references you need in each child page. </p>
http://stackoverflow.com/questions/952495/jquery-calls-in-external-js-file-with-masterpages/956370#9563701Answer by Jeff for jQuery calls in external js file with MasterPagesJeff2009-06-05T15:07:44Z2009-06-05T15:07:44Z<p>I want to thank everyone for their suggestions but I made a "bone-headed" mistake. The tags were mistakenly still in the external js file. Once removed, everything works as expected. I apologize for taking up everyone's time (and somewhat embarrassed).</p>
<p>Thanks.</p>