[Solved] how to limit the auto complete using jquery [closed]

Here is a related question with a fiddle : http://jsfiddle.net/andrewwhitaker/vqwBP/ Limit results in jQuery UI Autocomplete $(“#auto”).autocomplete({ source: function(request, response) { var results = $.ui.autocomplete.filter(myarray, request.term); response(results.slice(0, 10)); } }); P.S: Please, next time describe your problem, format JS script to be readable solved how to limit the auto complete using jquery [closed]

[Solved] Eclipse autocomplete view became wide and block the whole screen [closed]

Eclipse could be remembering the size of the dialog for content assist UI in the workspace/.metadata directory. Try editing this file: <workspace_dir>/.metadata/.plugins/org.eclipse.jdt.ui/dialog_settings.xml Look for the section that looks like this: <section name=”completion_proposal_size”> </section> In my workspace there is no special settings here, but perhaps there are some special settings in your workspace. 1 solved Eclipse … Read more