xdan / autocomplete

jQuery autocomplete plugin like Google autocomplete
MIT License
256 stars 92 forks source link

Width trouble #6

Closed tarampampam closed 9 years ago

tarampampam commented 9 years ago

I have some troubles with your plugin (not correct width for .xdsoft_autocomplete) when input have paddings and margins. Short fix is:

~158, ~628 lines:

$box.css({
    'display':$input.css('display'),
    'width':$input.css('width')
});

change to

$box.css({
    'display':$input.css('display'),
    'width':'auto'
});