I have one question, when i want to triggering my label and my select tag, structure like this:
<label class="label"></label>
<select class="select">
</select>
and my jquery code:
$(".label").click(function(){
$(".select").click();
});
i'm try to use mousedown
too, but it still can't open the select tag...
Any idea ?