at 1st kindly visit this fiddle:
I was wondering is there a way to transfer the click? I meant, when I click on the green area ( <div class="arrow"/>
) in the meantime the wi<select>
tag also get clicked, or selected and shows the options bellow. Is there a way to do this?
NB: I am doing this for IE supported <select>
tag.
I tried with the following code:
$(".ie-arrow").click(function(){
$(this).prev().find($("select").click());
});
but, It's not working. Can you solve it?
Thanks.