Hello, I post it here in de javascript section but my script is in php so i do not know if i am right here, but a widget is not loading because too much javascripts are interfering with eachother. How can i make this better? so that the widget is loading. Thanks greetings
This doesn't really tell us anything, you need to provide more information such as what widget this is, the js source, etc. Just how do you even know it's interfering with each other? =/ If it does, try to remove either and see.
More then likely it is to do with having multiple window.onload events when there can only be one. You need to find the part of the code that handles this for each script and combine them into one onload event. e.g: //script 1 window.onload = script1init; //script 2 window.onload = script2init; Code (markup): change to window.onload = function() { script1init(); script2init(); } Code (markup):
Oke this is also very helpfull, good tips and i will take look if this is the problem. Thanks for your help.