[jQuery] select - Form Events

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

$('#target1').select(
  {backgroundColor:'#e88987'},
  function(e){
    $(this).css('background-color', e.data.backgroundColor);
  }
);