JQuery conflict with body onload event.
- by Evgeny
Strange conflict in my code.
I have function that called from body onload:
var someGlobalVar=new SpecialType();
function OnBodyLoad()
{
someGlobalVar.Bind();
}
but when i include JQuery 1.4.2 to my project i have error that someGlobalVar is undefined.
Why global variable now is undefined and what ways to fix it?