Cheryl Amato wrote:
> I have a page that needs to use the son of suckerfish dropdowns in 2
> locations. I am also implementing the javascript that makes them
> keyboard accessible. In FF and IE7, the 2nd set of drop downs work
> although not from the keyboard. In IE6, they don't work at all. Can
> someone please take a look and see if they can see the problem?
> 
> ...
> 
> The page can be viewed at http://www.cherylamato.com/mhcc/


The first navigation has an id="nav".
The second one does not.
Your scripts are looking for an element with the id="nav".


The first script emulates a sort of hover for IE6 and below.

sfHover = function() {
var sfEls = document.getElementById("nav").getElementsByTagName("LI");
...
So the second navigation does not work.


The second script seems to make it keyboard accessible
        
mcAccessible = function() {
  var mcEls = document.getElementById("nav").getElementsByTagName("A");
...
But again, the second navigation has nothing to do with it.


Do you have a CSS question? ;)

Ingo
-- 
http://www.satzansatz.de/css.html
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to