Last active
October 11, 2018 16:34
Laravel Delete Link with jQuery
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<a href="#" data-delete="{{ route('account.bots.pages.destroy', ['bot_id' => $bot->id, 'id' => $page->id]) }}" class="text-danger"> | |
Delete | |
</a> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function($) { | |
$('a[data-delete]').on('click', function(evt) { | |
evt.preventDefault(); | |
var form_id='delete_'+Math.floor((Math.random() *1000) +1); | |
if(confirm('Are you sure?')) { | |
$(this).after(function() { | |
form='<form id="'+form_id+'" action="'+$(this).data('delete') +'" method="post">'; | |
form+='<input type="hidden" name="_token" value="'+$('meta[name="csrf-token"]').attr('content') +'">'; | |
form+='<input type="hidden" name="_method" value="DELETE">'; | |
form+='</form>' | |
return form; | |
}); | |
$('#'+form_id).submit(); | |
} | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment