Reputation: 23
I'm trying to use autocomplete from jquery-ui but the drop down list with suggestions is transparent so the text blends in with the page behind it. This is what the script looks like:
var createAutocomplete = function () {
var $input = $(this);
var options = {
source: $input.attr("data-otf-autocomplete")
};
$input.autocomplete(options);
};
$("input[data-otf-autocomplete]").each(createAutocomplete);
I would post an example picture if i could. Anyone know what might be causing this problem? Thanks!
Upvotes: 0
Views: 1411
Reputation: 1
Just add a link to one of the built-in themes that comes with JQuery UI.
Upvotes: 0