Olin wrote regarding '[EE] Key activate link in HTML?' on Sat, Mar 11 at 08:44: > It does say that some "user agents" may require the ALT or other keys to be > down to qualify the accesskey. Apparently MSIE requires ALT, but when I > type that key combination it only sets the focus to the link. I still have > to hit ENTER to actually go to the other document. Is there some way to do > this with a single key or key combination? With a little javascript you can. Set an onload handler in the body tag to unfocus all links initially, and then in the link itself you can set an onfocus handler to change to the next page. Or something like that - my javascript attribute memory is a tad hazy from disuse. :) But any user agent that supports accesskeys should also support onfocus. Note the potentially unintended side effect of having this move to the next page is the user arrives via tabbing through the links, though - it may be worthwhile to set the tabindex to some obscenely high number in order to make it last in the sequence, or do a state machine to see if the link just before this was last focused, or something like that... --Danny -- http://www.piclist.com PIC/SX FAQ & list archive View/change your membership options at http://mailman.mit.edu/mailman/listinfo/piclist