Skip to content

Instantly share code, notes, and snippets.

View vcjuliocesar's full-sized avatar

julio cesar valadez castañeda vcjuliocesar

  • mexico city
View GitHub Profile
@vcjuliocesar
vcjuliocesar / laravel.js
Created March 26, 2020 18:52 — forked from JeffreyWay/laravel.js
Want to send a DELETE request when outside of a form? This will handle the form-creation bits for you dynamically, similar to the Rails implementation. (Requires jQuery, but doesn't have to.) To use, import script, and create a link with the `data-method="DELETE"` attribute.
/*
<a href="posts/2" data-method="delete"> <---- We want to send an HTTP DELETE request
- Or, request confirmation in the process -
<a href="posts/2" data-method="delete" data-confirm="Are you sure?">
*/
(function() {