I have a selectbox and inside options below,
<select id="car_brands">
  <option style="color: red">BMW</option>
  <option style="color: red">Mercedes</option>
  <option>Toyota</option>
  <option>Nissan</option>
  <option style="color: red">Honda</option>
</select>I want to get an alert message in jquery, "this car's model is BMW, etc.." when I click red ones. If I click other I don't want to see any alert message on the screen. Thanks in advance
 
     
    