Sunday, May 19, 2024
 Popular · Latest · Hot · Upcoming
101
rated 0 times [  106] [ 5]  / answers: 1 / hits: 97060  / 15 Years ago, thu, october 8, 2009, 12:00:00

What's the event to bind for when a select form is selected?



I have something like this:



<select id='list'>
<option value='1'>Option A</option>
<option value='2'>Option B</option>
<option value='3'>Option C</option>
</select>


When Option B is selected, I want some function to run.



So what do I bind,



$(#list).bind(?, function (){
// How do I check if it's option b that's selected here
//blah blah
});

More From » jquery

 Answers
66

This jQuery snippet will get you started:



$('#list').change(function() {
if ($(this).val() === '2') {
// Do something for option b
}
});

[#98554] Friday, October 2, 2009, 15 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
mckaylab

Total Points: 311
Total Questions: 120
Total Answers: 93

Location: Montenegro
Member since Thu, Jun 16, 2022
2 Years ago
;