> I need to write some JavaScript to enable users to navigate around a form > that's 5 text inputs wide by up to about 30 inputs height by pressing the > arrow keys, as opposed to tabbing through them. > > Each form input is named differently using a regular naming convention. > > Does anyone have any pointers on how to go about writing something like > this?
The first thing raised is Cross Browser Compatibility - if you want it, then it'll increase your work no end Anyways, without starting on code, the general principal is to capture all events and check for the arrow key presses, then you have to find out where the cursor currently is (you can't just assume) and move it in the correct direction Two words for you: good luck! Philip Arnold Director Certified ColdFusion Developer ASP Multimedia Limited T: +44 (0)20 8680 1133 "Websites for the real world" ********************************************************************** This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error please notify the system manager. ********************************************************************** ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/[email protected]/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

