ASP.NET Master Page + pageLoad() = kills jquery?
- by Clay Angelly
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.
Recently, I added the following javascript script block at the end of my MasterPage:
function pageLoad(sender, args) {
}
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?
Thanks in advance for any insight.