<%# encoding: utf-8 %> $(function() { $('form#form_edit_photos').on("click", ".form-photo-field .form-actions-right .confirm-delete", function() { if ( confirm( $(this).attr('data-confirm') ) ) { $.ajax({ type: "POST", dataType: 'script', data: { '_method': 'delete' }, url: this.href }); } //TODO if all fields are deleted, show info - 0 photos and dont show form actions return false; }); $(".chzn-select").chosen( { no_results_text: "<%= I18n.t('chosen.no_results') %>" } ); $(".chzn-select-deselect").chosen({ no_results_text: "<%= I18n.t('chosen.no_results') %>", allow_single_deselect:true} ); $('#photo_gallery_wym_editation').on("click", ".form-actions .button", function() { $.ajax({ type: "POST", dataType: 'script', data: { '_method': $(this).attr('data-method') }, url: this.href }); return false; }); });