JSFiddle - React, Tailwind, and code Playground
by Valentin Radulescu
HTML
<div class="select2d">
<select id="what" class="select2">
<option value="0">Art</option>
<option value="1">Artist</option>
<option value="2">Collection</option>
</select>
</div>
CSS
.select2 {
background: rgba(0,0,0,0);
width:110%
}
.select2d {
background: #fff url('https://www.google.com/images/srpr/logo4w.png') no-repeat center;
border:1px solid #c4c4c4;
height: 22px;
position: relative;
width: 160px;
overflow: hidden;
}
JavaScript
$('.select2d').change(function () {
$('#wall_a').attr('action', $(this).find('select').val());
});