I am using jQuery autocomplete and would like to limit the showing results only when the user types at least 2 characters. How to do that?
$( "#myselectbox" ).autocomplete({ minLength: 2 });