[jQuery] change - Form Events

$('#input0').change(function(){
  $(this).css('color', '#e88987');
});

$('#target1').change(
  {color:'#e88987'},
  function(e){
    $(this).css('color', e.data.color);
  }
);