[jQuery] Re: checking if jquery loaded

2010-01-19 Thread zendog74
I ended up solving this problem by using the lazy load method described here: http://www.squidoo.com/load-jQuery-dynamically I think the loadPlugins() function was being called before jQuery had a chance to fully load, thus causing the errors. On Jan 15, 12:08 pm, Nalum mallon.l...@gmail.com

[jQuery] Re: checking if jquery loaded

2010-01-15 Thread zendog74
These just give me undefined errors, as jQuery is not defined if it is not loaded. Again, what I need to do is load jQuery if it is not already loaded and then load all of the required plug-ins once it is loaded. On Jan 14, 4:39 pm, waseem sabjee waseemsab...@gmail.com wrote: if(jQuery) {  //

[jQuery] Re: checking if jquery loaded

2010-01-15 Thread Nalum
Hello zendog74, In your script above you have script.onload = loadPlugins();, the onload event is only usable in the body tag or the frameset tag. Other than that I think your script is ok. On Jan 15, 4:44 pm, zendog74 n8cs...@gmail.com wrote: These just give me undefined errors, as jQuery is