Re: [Proto-Scripty] Re: Setting the focus on an input after an effect to show the input.

2010-06-15 Thread Richard Quadling
On 12 June 2010 10:37, bill will...@techservsys.com wrote: On 6/11/2010 5:07 PM, Walter Lee Davis wrote: Yes, but is there only one form on the entire page at any time? That's the point I was trying to get at here. If you have two inputs with the same ID, you can call focus() but only the

Re: [Proto-Scripty] Re: Setting the focus on an input after an effect to show the input.

2010-06-12 Thread bill
On 6/11/2010 5:07 PM, Walter Lee Davis wrote: Yes, but is there only one form on the entire page at any time? That's the point I was trying to get at here. If you have two inputs with the same ID, you can call focus() but only the first one with that ID will gain focus. Walter It is a

Re: [Proto-Scripty] Re: Setting the focus on an input after an effect to show the input.

2010-06-11 Thread Walter Lee Davis
One question though -- is there only ever one $('requestVehicle') in the page? If you use the ID method to call an object like this, you are making that contract with the browser -- only one thing will ever match that selector. If there are many such, then don't give them IDs, or be sure

Re: [Proto-Scripty] Re: Setting the focus on an input after an effect to show the input.

2010-06-11 Thread Richard Quadling
On 11 June 2010 16:07, Walter Lee Davis wa...@wdstudio.com wrote: One question though -- is there only ever one $('requestVehicle') in the page? If you use the ID method to call an object like this, you are making that contract with the browser -- only one thing will ever match that selector.

Re: [Proto-Scripty] Re: Setting the focus on an input after an effect to show the input.

2010-06-11 Thread Walter Lee Davis
Yes, but is there only one form on the entire page at any time? That's the point I was trying to get at here. If you have two inputs with the same ID, you can call focus() but only the first one with that ID will gain focus. Walter On Jun 11, 2010, at 4:57 PM, Richard Quadling wrote: