Forum Discussion
_anomDiebolt_
7 years agoQrew Elite
You can do it with script. Here is the essential code manually applied from the console along with BEFORE and AFTER screenshots:
BEFORE
AFTER
UPDATE:
This code will keep the "Make a Selection" option at the top but reverse the other options:
var $select = $("select");
var $options = $select.children("option");
$select.append($options.get().reverse());
BEFORE
AFTER
UPDATE:
This code will keep the "Make a Selection" option at the top but reverse the other options:
var $select = $("select");
var $options = $select.children("option:gt(0)");
$select.append($options.get().reverse());