Here is my problem.
I am working with the graphic desginers. He use the template etc. to build the web pages.
I will embed my php codes to his design. In order to not interfer with his design, I am not using the <body onload=""> to call for javascript when onload, instead, I am using window.onload to call for the javascript. (Actually this javascript will be created by php coding.)
If my desginer does't use <body onload=""> in his design, then our codes are fine. But when he use <body onload="">, it overwirtes my window.onload codes (which is in the header section).
The solution is that I have to add my onload codes in the <body onload="my_designer_onload_code; my_onload_code"> to make both onload works. But when my designer applies his template, he overwrites it back to <body onload="my_designer_onload_code">
Is there a solution for this issue?
Thanks!