all-forms.js 228 B

123456789
  1. jQuery(document).ready(function($) {
  2. $( '.trash a' ).click( function( e ) {
  3. e.preventDefault();
  4. var answer = confirm( nfi18n.confirm_delete );
  5. if ( answer ) {
  6. window.location.href = e.currentTarget.href;
  7. }
  8. } );
  9. } );