ASP.NET Master Page + pageLoad() = kills jquery? - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T16:25:03Zhttp://stackoverflow.com/feeds/question/921697http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/921697/asp-net-master-page-pageload-kills-jquery0ASP.NET Master Page + pageLoad() = kills jquery?Clay Angelly2009-05-28T16:02:44Z2009-05-28T17:05:05Z
<p>In my MasterPage, I have a ScriptManager that has a ScriptReference to my jquery.js file. This has always worked with no problems, all content pages that utilize jquery work fine.</p>
<p>Recently, I added the following javascript script block at the end of my MasterPage: </p>
<p><code>
function pageLoad(sender, args) {<br />
}
</code></p>
<p>By simply adding the above pageLoad method, no jquery code is executed from any of my content pages. Why would just having a pageLoad in the Master Page have this effect? </p>
<p>Thanks in advance for any insight.</p>
http://stackoverflow.com/questions/921697/asp-net-master-page-pageload-kills-jquery/921706#9217060Answer by Kezzer for ASP.NET Master Page + pageLoad() = kills jquery?Kezzer2009-05-28T16:04:55Z2009-05-28T16:04:55Z<p>Why can't you just use:</p>
<pre><code>$(document).ready(function() {
// do that funky thing
}
</code></pre>
http://stackoverflow.com/questions/921697/asp-net-master-page-pageload-kills-jquery/921856#9218562Answer by Chris Lively for ASP.NET Master Page + pageLoad() = kills jquery?Chris Lively2009-05-28T16:29:33Z2009-05-28T16:29:33Z<p>You might find the following discussion on pageLoad helpful.</p>
<p><a href="http://encosia.com/2009/03/25/document-ready-and-pageload-are-not-the-same/" rel="nofollow">http://encosia.com/2009/03/25/document-ready-and-pageload-are-not-the-same/</a></p>
http://stackoverflow.com/questions/921697/asp-net-master-page-pageload-kills-jquery/922054#9220540Answer by Clay Angelly for ASP.NET Master Page + pageLoad() = kills jquery?Clay Angelly2009-05-28T17:05:05Z2009-05-28T17:05:05Z<p>It looks like using Sys.Application.add_init() <em>instead of document.ready() or pageLoad()</em> in my Master Page resolved my issue. </p>
<p>Details about my issue are probably too lengthy but it may help someone else if I try to at least nutshell what's going on.</p>
<p>My Master Page has a "navigation" contenttemplate that houses the ASP.NET TreeView control. I wanted to keep the scrolled position (it has quite a few nodes in it) of that TreeView after postbacks. In order to do this, I attach a call to the following js function on the onscroll event of a div surrounding my TreeView control:</p>
<pre><code>function SetDivScrollPosition() {
var strCook = document.cookie;
if (strCook.length > 0) {
var cookies = strCook.split(";");
for (var i = 0; i < cookies.length; i++) {
var mySplit = cookies[i].split("=");
document.getElementById(mySplit[0].replace(" ", "")).scrollTop = mySplit[1];
}
}
</code></pre>
<p>} </p>
<p>However, I also have other scrollable divs in other content pages and I wanted to also keep track of those scrollable positions after postbacks (full or partial). So, what I had to do was to also call SetDivScrollPosition() from those content pages' document.ready() function. </p>