Trying to set focus of select that seems natural to user
Hi. I have this code that unhides a select box when the user clicks in the parent li containing it. Now I just want the .focus to seem more natural to the user as if they had just clicked in a normal select. As it stands, you have to click on it again to make it active (view the selections..) Any ideas?
- $(function(){
$('li.col1').click(function(){
$(this).find('select').removeClass('nodisplay').focus();
});
});