I get the following Javascript errors reported by Firefox 1.5 on Linux when viewing the drop-down menu demo...
The error is in function showhide. ChangingCode:Error in parsing value for property 'top'. Declaration dropped. Error in parsing value for property 'left'. Declaration dropped.
toCode:if (ie4||ns6) dropmenuobj.style.left=dropmenuobj.style.top=-500
fixes the problem.Code:if (ie4||ns6) dropmenuobj.style.left=dropmenuobj.style.top="-500px"
I don't really understand why this statement is there, because immediately on the return from the only call of this function the script seems to set the top and left coordinates back onscreen relative to the menu heading.



Reply With Quote

Problem fixed.

Bookmarks