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
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.