
Originally Posted by
Gary Hill
Are you using any other scripts? I had a similar problem with cmotion and another script which called the init function on the onload event within the html body.
<body onload="init();">
cmotion wants to call the fillup function on the onload event. It does this from within the external js file. The first event handler will block the second, therefore the original script will work but cmotion will not. To solve the coflict, I commented out the cmotion event handler and moved the call to fillup to the init method.
//window.onload=fillup;
Bookmarks