vote up 1 vote down star

I need to prompt an alert message when a user selects a particular option in a select menu. Is there a way to do this using jQuery?

flag

2 Answers

vote up 2 vote down check

assuming your select has an ID of myselect, and the value you want to check is "myval"

$("#myselect").change(function() {
   if($(this).val() == "myval")
    {
       alert('message');
    }
});

I havent tested this but the concept should be sound

link|flag
vote up 0 vote down

I recently bumped into the jQuery Confirm Plugin. It may or may be what you are looking for.

link|flag

Your Answer

Get an OpenID
or

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