In the following ".input" matches with a tag.
The code works fine in all browser except in internet explorer where I need to click on a select box twice to get the dropdown.
$(".input").focus(function () {
var rc = $(this).parents(".rc-input");
rc.removeClass("rc-input-default");
rc.addClass("rc-input-active");
});
If I use mousedown instead of focus it work, but the I don't get the desired effect when tabbing?
<div class="rc-input">
<select class="input">
...
</select>
</div>