[jQuery] Inconsistent behaviour of [autocomplete]
Hello,
the plugin http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/
has a slight inconsistency.
With multiple not set (default=false), I have different behaviour if I
select a value with 'Enter' or with a mouse click.
The return executes a $input.blur() the mouse click not.
I would appreciate if the blur is removed to have the cursor rest in
the input field. The user can then press 'tab' to get into the next
field instead of being forced to click in the next field.
Best Regards
Sebastian
... snip ...
case KEY.RETURN:
if( selectCurrent() ){
// make sure to blur off the current field
if( !options.multiple )
$input.blur();
event.preventDefault();
}
break;