Is there a way to show Font Awesome icons in select options tag?
I have tried using it outside like this
<i class="fas fa-chart-pie"></i>
But I'm not sure how to display it within the <option> tags instead of text.
<select id="select_graphtype">
<option value="line_graph"> Line Graph</option>
<option value="pie_chart"> Pie Chart</option>
</select>
Any assistance on this would be greatly appreciated!