vote up 2 vote down star

Does the HTML "select" element have an on select event? what exactly is the name of the event?

flag

50% accept rate

4 Answers

vote up 11 vote down check

Is onchange what you're looking for?

link|flag
fantastic stuff - works!!! thanks guys. – Jangwenyi Oct 28 '08 at 11:52
vote up 0 vote down

It's also worth mentioning that this doesn't fire if the selection doesn't change (seems self explanatory). As far as I know there is no event that fires when a user drops down the selectbox and then reselects the original value.

link|flag
vote up 2 vote down

It's onchange Event.

With jQuery it could be used like this

<html>
<head>
    <script type="text/javascript" src="jquery-1.2.6.js"></script>
    <script type="text/javascript">
        $(document).ready(function()
        {
            $("#list").attr("selectedIndex", -1);

            $("#list").change(function()
            {
                $("#answer").text($("#list option:selected").val());
            });
        });
    </script>
</head>
<body>
    <div id="answer">No answer</div>
    <form>
        Answer
        <select id="list">
            <option value="Answer A">A</option>
            <option value="Answer B">B</option>
            <option value="Answer C">C</option>
        </select>
    </form>
</body>
</html>
link|flag
vote up 1 vote down

Regardless of input type, whenever a form input changes value, an onchange event should always be thrown. (With the exception of buttons, as they are not really input devices as such.)

link|flag
Worth noting that when you're using a <select>, the event is fired immediately on selection, whereas with something like a text input, it's not fired until you move off the field. Checkboxes and radio buttons are fiddly with onchange, so it's best to use onclick for those. – insin Oct 28 '08 at 11:51

Your Answer

Get an OpenID
or

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