I am trying to reverse the order of font select options when I click on a button. Everything I've seen online is using jquery, is there any way I can do it with just js?
<button class="gray" type="button" onclick="sortFont();" > click </button>
<select id="fontMenu" >
<option value="Arial">Arial</option>
<option value="Times New Roman">Times New Roman</option>
</select>