Not sure if this is the same issue, but I had a situation where I was
making a textfield an autocompletion field on focus (I did this
because I was programmatically generating new textboxes on focus as
previous ones were filled).  If I clicked on an autocomplete field and
started typing, I would get results displayed, but if I tabbed into
the field and typed, no autocompletions would appear.
As a temporary solution, I just added something like:
$("#txtfield").focus(
function() {
   $(this).after(...add textbox when this field is focused...);
   $(this).autocomplete(...);
   $(this).click(); // could use .focus()
} ) ;

-Chris

On Jul 8, 12:30 am, Anton <[EMAIL PROTECTED]> wrote:
> I too can't keep focus on the autocomplete field after hitting thetab
> key in Firefox (Safari works fine - it stays in the field). I'm
> running the latest version (1.0.2) as well. Let me know if there's
> some way I can help bugtracking this.
>
> cheers,
>
> /Anton
>
> On 18 Juni, 22:15, Carl Von Stetten <[EMAIL PROTECTED]> wrote:
>
> > Jörn,
>
> > I have made extensive use of the autocomplete plugin for my intranet
> > site.  I just downloaded the updated version from the trunk (changelog
> > shows it as 1.0.1, the js file lists the build as 5329).  I still have
> > thetaborder problem.
>
> > Carl
>
> > Jörn Zaefferer wrote:
> > > Yes, that should be fixed in the latest revision:
> > >http://dev.jquery.com/view/trunk/plugins/autocomplete/
>
> > > Can you assert that it actually fixes theissue? I'll create a new
> > > release, then.
>
> > > On Fri, Jun 13, 2008 at 7:53 PM, Priest, James (NIH/NIEHS) [C]
> > > <[EMAIL PROTECTED]> wrote:
>
> > >> Jörn, have you made any progress on theTABissuewith the Autocomplete 
> > >> plugin?
>
> > >> ie: If you in that field andtabaway - you loose yourtaborder.  I know it 
> > >> came up in the comments on the plugin page but I haven't heard any more 
> > >> updates on it...
>
> > >> Thanks,
> > >> Jim

Reply via email to