vote up 0 vote down star

Simple question really. This works in all but IE6:

<html>
<body>
</body>
<select id="test" onchange="blur()">
<option name="one">One</option>
<option name="two">Two</option>
<option name="three">Three</option>
</select>
</html>

Is there anyway to get this working in IE6? JavaScript and JQuery hacks allowed.

Any ideas, remarks or tips? Thanks in advance

flag

78% accept rate
Looks like you're missing some code there. – Tim Down Sep 24 at 13:17
What isn't working? – adamantium Sep 24 at 13:17
the blur() isn't working. Sorry should have specified more clearly. – AlexDuggleby Sep 25 at 11:55

3 Answers

vote up 1 vote down check

Under jQuery:

<script type="text/javascript">
$(function() {
    $('#test').change(function() {
        $(this).blur();
    });
});
</script>

Or you may try replacing:

With:

<select id="test" onchange="javascript:blur(this);">

UPDATE: Actually it seems that the IE6 JavaScript engine has problems with blur()

A (non-ideal) work around is:

<script type="text/javascript">
$(function() {
    $('#test').change(function() {
        $('body').focus();
    });
});
</script>

Which will lose focus on the select input field by focussing the HTML document.

link|flag
1  
Two mistakes in the non-jQuery version: 1) do not use a javascript: prefix in an event handler attribute. The value of the attribute should be pure JavaScript. 2) You should call the blur() method of the select object, not the window (which is effectively what you're doing), and I'd be surprised if what you've got there works in any browser. – Tim Down Sep 24 at 13:26
+1 Thanks, I never knew that. – Sbm007 Sep 24 at 13:27
Actually I think I may be wrong about the second point: I think selects do not have a blur() method. Still, attempting to make the whole window lose focus seems odd. – Tim Down Sep 24 at 13:38
hi this is closest to what we ended up using, which was body.blur() or document.body.blur(). Thanks! – AlexDuggleby Sep 25 at 11:57
vote up 0 vote down

What are you trying to do? If you're trying to make your drop-down lose focus after the user selects something from it, why do you want to do this?

Incidentally, if the user opens the drop-down but then selects the same option that was previously selected, you won't get a change event.

link|flag
vote up 0 vote down
<select id="test" onchange="blur()">

You want to blur the select, not the window (which acts as the global object, so this is the same as window.blur()).

<select id="test" onchange="this.blur();">

Works in all but IE6 due to a bug. You could get around it by focusing something else:

<a href="#" id="x"></a>
<select id="test" onchange="var x= document.getElementById('x'); x.focus(); x.blur();">

BUT! Either way, don't do this. You'll break keyboard accessibility for the select (since pressing up/down immediately sends a change event). This is the same problem that faces drop-downs abused as navigation.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.