PDA

View Full Version : Javascript Loading problem


vbplusme
01-20-2009, 08:49 AM
Hello and Greetings,

I have a javascript that I am working on and like a lot of javascripts, part of it needs to be loaded in the head tags and the other part is in the body somewhere. The script works perfectly standalone in an html page but when I tried to load it into vBulletin using a file instead of the code which is quite long, Only the framework loads, none of the javascript variables display. The script is using a "window.onload="somefunction";" and I am wondering if that is the problem. I created a Template the contains the html that is suppose to display the javascript and a plugin that defines the template. I think its all correct but I'm mystified why it doesn't work. As I said, standalone using a simple html page it works beautifully?

Any ideas?

TIA

SEOvB
01-20-2009, 11:08 AM
Have you tried without using the plugin to display it (though I dont see that causing a problem)

mikesz
01-22-2009, 05:03 AM
Thanks for the reply. I did but what I discovered is that when I moved the onload function call out of the javascript file and into the template using :

<script language="JavaScript" type="text/javascript">onLoad="functioncall()"</script>

Everything just magically worked! I even tried moving it to different locations in the head tag to see if it was being stepped on by other javascipt and none of that worked.

Thanks again. I appreciate your comments.