I am using the Jquery UI Autocomplete plugin for a straight forward search term suggestion tool. It is up and running with no problems except that I cannot move the results box
This can be easily achieved via the position option, specifically the offset property:
$('#myField').autocomplete({ source: …, position: { offset: '20 4' // Shift 20px to the left, 4px down. } });