I have dynamically added the option values in selectbox. But for each option I want to show a small color bar + description with respect to color bar. Description would be right to color bar.
What is the way to incorporate color bar + description in each option values of selectbox dynamically?
The following code is adding option values.
for (var i = 0; i < item.length; i++) {
Options += '<option value="' + item[i] + '">' + item[i] + '</option>';
}
My requirement is to add color bar using small text field of width 1em next to item value .