mirror of
https://github.com/devbridge/jQuery-Autocomplete.git
synced 2024-11-12 16:26:37 +00:00
Return false in click handler to prevent default behaviour.
This is useful when the input field is located in a dropdown or something similar and prevents it to be closed.
This commit is contained in:
parent
2874ec2d8d
commit
c4cd2fb061
@ -169,6 +169,7 @@
|
||||
// Listen for click event on suggestions list:
|
||||
container.on('click.autocomplete', suggestionSelector, function () {
|
||||
that.select($(this).data('index'));
|
||||
return false;
|
||||
});
|
||||
|
||||
that.fixPosition();
|
||||
|
Loading…
Reference in New Issue
Block a user