[jQuery] Events firing twice
Maybe I'm not understanding binding correctly, but when I select a
different item from the list below, the change() event fires twice.
Why is it doing this?
<select id="testselect">
<option value="1">Testing1</option>
<option value="2">Testing2</option>
<option value="3">Testing3</option>
</select>
// jquery
$('#testselect').change(function(){
alert("I am showing alerting twice!");
});