jQuery ComboBox
Set the "template" property of the jQWidgets jqxComboBox.
by jqwidgets
HTML
<link rel="stylesheet" href="https://jqwidgets.com/public/jqwidgets/styles/jqx.base.css">
<link rel="stylesheet" href="https://jqwidgets.com/public/jqwidgets/styles/jqx.energyblue.css">
<script src="https://jqwidgets.com/public/jqwidgets/jqx-all.js"></script>
<div id="jqxComboBox">
</div>
JavaScript
var source = ["Item 1", "Item 2", "Item 3"];
$("#jqxComboBox").jqxComboBox({
template: 'success',
source: source,
width: 150,
height: 35
});