When you click on "put", the field is populated with "changed" information, but when this happens, Next change
does not identify this change.
In practice this does not work, how can I make it work?
HTML
<button id="botao">Colocar</button>
<input id="campo">
jQuery
$('#botao').click(function(){
$('#campo').val('mudou');
})
$('#campo').change(function() {
alert('mudou mesmo');
});