Sha256: f718cd9161580b0015f4bc683d27fb9b1f60e6c281f86c4bf389140dc8304d37
Contents?: true
Size: 349 Bytes
Versions: 41
Compression:
Stored size: 349 Bytes
Contents
$(function(){ $('a.delete_link').click(function() { if ( confirm('Really?') ) { var f = $('<form>', { action: this.href, method: 'post' }); f.append( $('<input>', { type: 'hidden', name: '_method', value: 'delete' }) ); f.appendTo("body"); f.submit(); } return false; }); });
Version data entries
41 entries across 41 versions & 1 rubygems