I'm using jquery UI to do autocomplete for my textbox, the autocomplete is working fine with this code
$(function() {
$("#company_name").autocomplete({
source: "{{URL::to('category')}}",
autoFocus:true
});
});
but the problem is my autocomplete suggesion dont have background like white background.. how to fix it?