On Tue, 18 May 2004 11:20:48 +0100, Todini, Gianfranco (TWIi London) wrote: > I need to do some changes on a website to improve accessibility and one of > the issue that I need to solve is the way the form are submitted, which is > done by a javascript function called from the onclick event on an Anchor > tag. And we know that this is wrong because if a user has got javascript > disabled, he won't be able to submit the form.
One site I did recently, I added code similar to: <noscript><input type="submit"></noscript> to the form. The regular javascript submits work if js is on, and the button appears if it isn't. All your client-side validation would be missing, but thats duplicated server-side and is only on the client for user-convenience, right? :) HIH Lea -- Lea de Groot Elysian Systems - I Understand the Internet <http://elysiansystems.com/> Web Design (Usability, Information Architecture, Search Engine Optimisation) in Brisbane, Australia ***************************************************** The discussion list for http://webstandardsgroup.org/ See http://webstandardsgroup.org/mail/guidelines.cfm for some hints on posting to the list & getting help *****************************************************
