vote up 0 vote down star

I'm using the Jörn Zaefferer's jQuery autocomplete plugin which works great, except for a small bug: if a user begins typing in one field where the autocomplete is attached to, but then while the suggest is still showing they click on another input field, the cursor returns back to the field with the autocomplete.

Are there any solutions to this, or is it pretty much the way works? I noticed that the jQuery UI autocomplete does the same thing.

flag

70% accept rate

2 Answers

vote up 1 vote down

I've been kind enough to look at the code for you, uncomment this line:

// TODO provide option to avoid setting focus again after selection? useful for cleanup-on-focus
input.focus();

In jquery.autocomplete.js line 583.

link|flag
Heh, like this answer better than the first :) – Darryl Hein Mar 4 at 6:10
Actually, it's a combo of your previous answer and this one. – Darryl Hein Mar 4 at 15:53
vote up 1 vote down

The fix is:

Comment out lines 308-310 of the unpacked version:

//if (wasVisible)
    // position cursor at end of input field
    //$.Autocompleter.Selection(input, input.value.length, input.value.length);

And from Luca's post, comment out line 510:

//input.focus();

These both need to be commented out to make it work properly.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.