This occurs when I bind a change event to a textarea and then a clickevent to a button. If I'm focused in the textarea and have made a change and then click on the button, only the change event fires. An example is here: JSFiddle
JS:
$(function() {
$('textarea').change(function() {
alert('mefirst')
});
$('#submit').click(function(e) {
alert('hi');
});
});
HTML:
<textarea name="details" rows="5"></textarea>
<input type="submit" id="submit"/>
If you unbind the textarea the click event will work as expected. Any suggestions would be helpful (happens in Chrome and Firefox).