Menu/banner conflict

  • Thread starter Thread starter Larry
  • Start date Start date
L

Larry

I am modifying a website with an embedded css menu system that is
initialized by an onload in the Body tag. Am trying to add a banner image
rotator which uses a js external file. The banner code works fine when
tested separately from the webpage. When the code for it is inserted into
the page the banner displays but is static.

Is there a technique I am missing for getting both of them to run at the
same time?
 
A link to a faulty page will be useful.

Running 2 or more onload javascripts is achieved by placing both
function calls in the same onload event, for example:

<body onload="cssMenu();adRotator();">

where cssMenu() and adRotator() are the JavaScript functions being
called.
 
Back
Top