$("select").change(function() {

           alert($(this).attr("value"));


           });

On Tue, Oct 13, 2009 at 4:00 PM, Mike <mgor...@gmail.com> wrote:

>
> $("select").change(function() {
>
>                alert($("select option:selected").val());
>
>
>            });
>
>
>
> OR
>
> $("select").change(function() {
>
>            alert($(this).attr("value"));
>
>
>            });
>
>
> I am specifically looking at the selector used in the alert.  From my
> testing the result in the same correct values to be displayed.

Reply via email to