Re: Shortcut keys open browser menu in IE
2005/03/25 22:06
Viewed 16512 times
Replies: 1/1

Hey there, thanks for the tip! :-) We were actually thinking about allowing keyboard navigation by using the "accesskey" attribute (instead of having the underscore thing as we do currently) and I think that in that case, this hack shouldn't be needed anymore--but however, we will add it for backwards compatibility.

Re[2]: Shortcut keys open browser menu in IE
2006/12/06 17:18
Viewed 9849 times
Replies: 0/0
by cfg

I noticed a different issue, the access key was being set to a space, so pressing alt+space in IE caused one of my menus to open, not the Window menu as expected. I use the keyboard to minimize windows, alt+space, n so this was kind of annoying.

if( is_ie && key && parent.base ) {
tmp = CE( "a", item );
tmp.href = "#";
+ key = key.replace( /\s+/, "" );
tmp.accessKey = key;
}
last
Google