I’m using jQuery autocomplete, right now when a user clicks in the input, there is no helper provided to tell the user what to do.
is there a way with jQuery autocomplete to show a helper message below the input showing “Type …… ” which is removed as soon as there are suggestions?
Thanks
How about something like this, you set a default value on your input field (e.g. Type here…). Then when the user clicks init, you clear out the default text and the autocomplete kicks in. However if they leave the input field without text, the default text returns to the text field. Here’s a jsFiddle example.
HTML:
jQuery (using a local data source demo):