JSFiddle - React, Tailwind, and code Playground

by shapeshifta

HTML

<div class="wrapper">
    <select>
        <option>hello</option> 
    </select>
    <span class="shim"></span>
</div>

CSS

.wrapper{position:relative}
.shim{position:absolute;left:0;top:0;width:100px;height:20px;z-index:2;opacity:0;filter:Alpha(Opacity='0')}

JavaScript

$('div.wrapper span.shim, div.wrapper select').click(function(){
    console.log('geklickert!');
});