I didn't get the error you describe and the menu behaves the same in IE6 and FF1.0.2. It drops down but, clicking on it does nothing in either browser. I do get an error in FF depending upon how far down the list I hover my pointer:
Error: b has no properties
Source File: file:///C:/webwork/side/agility/agility.htm
Line: 131
That could be eliminated at least one of two ways. But, it doesn't seem to effect the performance of the menu which, as I said, is limited in either browser. Refreshing the page makes no difference. Here is the code that could be changed:
Code:
function contains_ns6(a, b) {
while (b.parentNode)
if ((b = b.parentNode) == a)
return true;
return false;
}
just doing a check for b will fix or at least eliminate the error:
Code:
function contains_ns6(a, b) {
if (b){
while (b.parentNode)
if ((b = b.parentNode) == a)
return true;
return false;
}
}
I'm not giving up on this yet but, I don't see what the menu is supposed to do. I mean, I can guess there are other 'calculators' to come but, without anything for the menu to do, it is hard to see if it is doing anything. If it acts differently for you, let me know.
Bookmarks