html drop menu won't mouseover and won't open the submenus and it gives a js error
Return to Recent Questions
Q:
I pushed the js files you attached and it fixed my Trial error message but
now my left menus APPLMENU.JS and APPL2MENU.JS won't mouse over and won't
open the submenus and it gives a javascript error.
A:
Now you have several errors in you data files appl2menu.js and
applmenu.js.
Now you have
var menuBackColor="cccccc";
var menuBorderWidth="";
var itemBorderWidth="";
This is not right.
Try to write them:
var menuBackColor="#CCCCCC";
var menuBorderWidth="0"; //this parameter cannot be empty
var itemBorderWidth="0"; //this parameter cannot be empty
Return to Recent Questions
|