In this custom select box, I am trying to show a list of options where a selection shows its corresponding data-icon and not its text in the placeholder.
But the data-icon is not updating properly in the placeholder when one of the selected options is clicked. It only shows the first data-icon irrespective of what is selected.
on line 7 - declaration
dataui = $(this).children('option')
on line 24 - show data-icon for option:selected on first run
$styledSelect.html('<img src="'+dataui.data('icon')+'" />');
on line 61 - update selection when option is clicked
$styledSelect.html('<img src="'+dataui.data('icon')+'" />').removeClass('active');
I guess the prob is in the declaration, but not sure how to iterate and point to a particular selection.
and
I am not able to fit option:selected in line 24 to show data-icon on first run.
and, how will I also add a tick mark when the option list is shown to indicate what was/is selected
you need to set the $styledSelect.html with the $this.find(":selected").data('icon') like this
http://jsfiddle.net/Zg76F/4/