By using jQuery how do I attach an event on the following select element so that on index change it alerts “I have changed!”?
<select id="selCars">
<option>Volvo</option>
<option>Saab</option>
<option>Mercedes</option>
<option>Audi</option>
</select>
1 Answer