$('a.js-remove-image[data-remote]').on('ajax:success', function(e, data, status, xhr) {
  // Remove the image from the UI
  $(this).closest('.row').fadeOut().remove(); // todo use animate.css for something more fun
});