very simple question (but I can't find the answer on the Web...): I have an autocomplete field being set this way:
$(document).ready ->
$('#projecttask_user_name').autocomplete
source: "/autocomplete/users"
I would like jquery to trigger the source when I select the field in order to get the full list of possibilities even if I haven't typed anything in the field.
How can I do this? Thanks!