I have a select input and i have disabled the default browser appearences as follows
select {
-webkit-appearance: none;
-moz-appearance: none;
appearence: none;
}
I want to use a custom arrow, in order to expand and collapse to select menu. I have tried various js tricks but nothing really works just right.
I have considered using pure css making the select input transparent with z-index 2. Consequently the trigger would fall into place and appear as a button.
Here is the jfiddle, but i can't make it work.