random1 Posted September 18, 2008 Share Posted September 18, 2008 Hey all, I have a form I have been working on and I'm trying to make sure that it works in Firefox, IE, Safari and Chrome. How can you add access keys to a form (for fields) and set tab indexes to fields? Quote Link to comment https://forums.phpfreaks.com/topic/124767-access-keys-and-tabindex/ Share on other sites More sharing options...
CroNiX Posted September 18, 2008 Share Posted September 18, 2008 http://www.w3.org/TR/html401/interact/forms.html#h-17.11 Quote Link to comment https://forums.phpfreaks.com/topic/124767-access-keys-and-tabindex/#findComment-644818 Share on other sites More sharing options...
random1 Posted September 19, 2008 Author Share Posted September 19, 2008 Got some info from that. How can you style a <button> to have one of the letters underlined (to indicate the shortcut)? Quote Link to comment https://forums.phpfreaks.com/topic/124767-access-keys-and-tabindex/#findComment-645318 Share on other sites More sharing options...
dropfaith Posted September 19, 2008 Share Posted September 19, 2008 not sure what you mean heres a css guide to buttons http://www.webreference.com/programming/css_stylish/ Quote Link to comment https://forums.phpfreaks.com/topic/124767-access-keys-and-tabindex/#findComment-645356 Share on other sites More sharing options...
chronister Posted September 20, 2008 Share Posted September 20, 2008 Give the access letter a span container and style that container. <span class="accessKey">C</span>lick Here <style type="text/css"> .accessKey{ text-decoration:underline; } </style> Quote Link to comment https://forums.phpfreaks.com/topic/124767-access-keys-and-tabindex/#findComment-646244 Share on other sites More sharing options...
CroNiX Posted September 26, 2008 Share Posted September 26, 2008 lick Here LOL Quote Link to comment https://forums.phpfreaks.com/topic/124767-access-keys-and-tabindex/#findComment-651510 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.