> I believe the tabindex attribute is HTML standard for most form elements, so > rather than a complicated javascript, you should be able to simply tell the > form which elements are at what points in the tab order, i.e. > > <input type="text" name="..." tabindex="1"> > <input type="text" name="..."> > <select name="..." tabindex="2">
I missed the original message, but it he just wants to skip one field, you can set the tabindex for that single field to some number higher than the total number of fields, like 9999. -Justin Scott, Lead Developer Sceiron Internet Services, Inc. http://www.sceiron.com ______________________________________________________________________ This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion Hosting. 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

