![]() |
| ||
| Javascript web forms without click Normally, arriving at a PHP page with a data entry web form, you would have to click on any field you wish to change to go into data entry mode (the first field or any successive one), and then you can tab between fields (TAB to go forward or ALT-TAB to go back one or so) and then to activate the submit button you would only need to press enter. What I'm wondering, is if upon arrival at the page you can bypass any mouse click at all, and just use the tab key and enter data for any field (perhaps just 2 out of 10), and then still requiring the enter key to submit the data. So basically this would eliminate the need to click on any field first to start the data entry mode, Is this possible? And also, if this is an easy fix, can I choose which field is highlighted first (where the tab key would point to) and perhaps add some coloration highlight to the active field at the time? Thanks The form code would start out (in the old manual way) as something like this: <form action="depts.php" method="POST"> |
| ||
| Re: Javascript web forms without click You have to just set the focus to the first input box after the page is loaded. And that can be done by simple javascript code. Write an event-handler for <body onload="setInputFocus()"> function setInputFocus() {And your HTML code will also change a lil bit as you have to set a id for first input you want to focus onload. <form action="depts.php" method="POST"> |
| ||
| Re: Javascript web forms without click Thanks a lot, I had to play with it a bit, but got it to work just fine. In the head section I put: <script type="text/javascript">And then changed the form below to add the element name as you mentioned. I also did a color mod which I found on this page: http://www.netmechanic.com/news/vol5...cript_no19.htm So all is looking great! Appreciated your quick reply Frank |
| All times are GMT -4. The time now is 10:07 am. |
Forum system based on vBulletin Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
©2003 - 2010 DaniWeb® LLC