views:

9

answers:

1

The following code displays the new selected value if it is different from the current value:

HTML:

<select>
    <option value='123'>123</option>
    <option value='456'>456</option>
    <option value='789'>789</option>
</select>

JS:

$(function() {
    $('select').change(function() { alert($(this).val()); });
});

I would like to display the value whenever an option selected (even if it is the currently selected value).

How could I achieve this ?

+2  A: 

Hook on the click event. It'll be a bit more often fired, but that's the best you can get.

BalusC