I am currently utilizing jQuery autocomplete functionality.
I have configured it to communicate with a service and retrieve records:
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script>
$( function() {
$( "#tags" ).autocomplete({
source: "/autocomplete/",
minLength: 3,
select: function( event, ui ) {
}
});
} );
</script>
Upon receiving the dropdown list, it lacks any styling.
The provided documentation at: http://api.jqueryui.com/autocomplete/ mainly discusses the JavaScript functionality.
Is there a way to customize the style of the dropdown containing the search results?