![]() | |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
For those who have Javascript libraries, are you willing to point me to any web sites that use your code so I can marvel at what you have accomplished and learn from or borrow ideas from your code (without stealing code)? You can pass info to me via e-mail if you prefer at dwolt at tincat-group dot com. Thanks. --dawn P.S. My address book is in bad shape after my computer was stolen and I moved away from Outlook and other excuses, so I no longer have some of you in there and wouldn't mind a personal e-mail to get the address book back in order too. |
#3
| |||
| |||
|
|
I am interested in a JavaScript that would enable the tab key to jump from one input box to another, skipping any links and buttons in route to the next input box. Does anyone have such a beast? Thanks, Jeff |
#4
| |||
| |||
|
#5
| |||
| |||
|
|
On Wed, 09 Nov 2005 23:14:35 GMT, "Jeffrey Kaufman" jkaufman (AT) keydata (DOT) us> wrote: I am interested in a JavaScript that would enable the tab key to jump from one input box to another, skipping any links and buttons in route to the next input box. Does anyone have such a beast? Thanks, Jeff You can do that with key press traps and an array of only the element names that you want to focus on. I could write one if you wanted it, but if you have 100 fields on screen it can get quite large and combersome. Glen -- Posted via NewsDemon.com - Premium Uncensored Newsgroup Service ------->>>>>>http://www.NewsDemon.com<<<<<<------ Unlimited Access, Anonymous Accounts, Uncensored Broadband Access |
#6
| |||
| |||
|
#7
| |||
| |||
|
#8
| |||
| |||
|
|
Glen, Some of the order forms do get rather large, but most are 20 to 30 items. I don't want you to waste a lot of time on this, but any direction and/or code snips is greatly appreciated. Jeff "Glen" <nospamwebmaster (AT) all-spec (DOT) all-spec.com.com> wrote in message news:m4e5n1tv5h57o690s7r8nm0ecs4or7561o (AT) 4ax (DOT) com... On Wed, 09 Nov 2005 23:14:35 GMT, "Jeffrey Kaufman" jkaufman (AT) keydata (DOT) us> wrote: I am interested in a JavaScript that would enable the tab key to jump from one input box to another, skipping any links and buttons in route to the next input box. Does anyone have such a beast? Thanks, Jeff You can do that with key press traps and an array of only the element names that you want to focus on. I could write one if you wanted it, but if you have 100 fields on screen it can get quite large and combersome. Glen -- Posted via NewsDemon.com - Premium Uncensored Newsgroup Service ------->>>>>>http://www.NewsDemon.com<<<<<<------ Unlimited Access, Anonymous Accounts, Uncensored Broadband Access |
#9
| |||
| |||
|
|
On Wed, 09 Nov 2005 23:14:35 GMT, "Jeffrey Kaufman" jkaufman (AT) keydata (DOT) us> wrote: I am interested in a JavaScript that would enable the tab key to jump from one input box to another, skipping any links and buttons in route to the next input box. Does anyone have such a beast? Thanks, Jeff You can do that with key press traps and an array of only the element names that you want to focus on. I could write one if you wanted it, but if you have 100 fields on screen it can get quite large and combersome. Glen |
|
-- Posted via NewsDemon.com - Premium Uncensored Newsgroup Service ------->>>>>>http://www.NewsDemon.com<<<<<<------ Unlimited Access, Anonymous Accounts, Uncensored Broadband Access |
#10
| |||
| |||
|
|
It's very simple. Place a tabindex=-1 in any element you do want the tab to stop at. input class="dupe" type=text readonly name="DUPE" tabindex=-1 value="" size=120 button ... tabindex=-1 ... Chandru Murthi "Jeffrey Kaufman" <jkaufman (AT) keydata (DOT) us> wrote in message news:wrBcf.15018$q%.11562 (AT) newssvr12 (DOT) news.prodigy.com... Glen, Some of the order forms do get rather large, but most are 20 to 30 items. I don't want you to waste a lot of time on this, but any direction and/or code snips is greatly appreciated. Jeff "Glen" <nospamwebmaster (AT) all-spec (DOT) all-spec.com.com> wrote in message news:m4e5n1tv5h57o690s7r8nm0ecs4or7561o (AT) 4ax (DOT) com... On Wed, 09 Nov 2005 23:14:35 GMT, "Jeffrey Kaufman" jkaufman (AT) keydata (DOT) us> wrote: I am interested in a JavaScript that would enable the tab key to jump from one input box to another, skipping any links and buttons in route to the next input box. Does anyone have such a beast? Thanks, Jeff You can do that with key press traps and an array of only the element names that you want to focus on. I could write one if you wanted it, but if you have 100 fields on screen it can get quite large and combersome. Glen -- Posted via NewsDemon.com - Premium Uncensored Newsgroup Service ------->>>>>>http://www.NewsDemon.com<<<<<<------ Unlimited Access, Anonymous Accounts, Uncensored Broadband Access |
![]() |
| Thread Tools | |
| Display Modes | |
| |