ASP.NET Master Page + pageLoad() = kills jquery? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T16:25:03Z http://stackoverflow.com/feeds/question/921697 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/921697/asp-net-master-page-pageload-kills-jquery 0 ASP.NET Master Page + pageLoad() = kills jquery? Clay Angelly 2009-05-28T16:02:44Z 2009-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#921706 0 Answer by Kezzer for ASP.NET Master Page + pageLoad() = kills jquery? Kezzer 2009-05-28T16:04:55Z 2009-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#921856 2 Answer by Chris Lively for ASP.NET Master Page + pageLoad() = kills jquery? Chris Lively 2009-05-28T16:29:33Z 2009-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#922054 0 Answer by Clay Angelly for ASP.NET Master Page + pageLoad() = kills jquery? Clay Angelly 2009-05-28T17:05:05Z 2009-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 &gt; 0) { var cookies = strCook.split(";"); for (var i = 0; i &lt; 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>