Skip to content

Instantly share code, notes, and snippets.

@wingsline
Forked from fahrulazmi/restfulizer.js
Last active August 29, 2015 13:57
Show Gist options
  • Save wingsline/9381431 to your computer and use it in GitHub Desktop.
Save wingsline/9381431 to your computer and use it in GitHub Desktop.
/**
* Taken from http://paste.laravel.com/b8n
* and added a datum attr to submit data along with the RESTful request
*
* Restfulize any hiperlink that contains a data-method attribute by
* creating a mini form with the specified method and adding a trigger
* within the link.
* Requires jQuery!
*
* Ex in Laravel:
* <a href="users" data-method="delete">destroy</a>
* // Will trigger the route Route::delete('users')
*
*/
$(function(){
$('[data-method]:not(:has(form))').append(function(){
return "\n"+
"<form action='"+$(this).attr('href')+"' method='POST' style='display:none'>\n"+
" <input type='hidden' name='_method' value='"+$(this).attr('data-method')+"'>\n"+
"</form>\n";
})
.removeAttr('href')
.attr('style','cursor:pointer;')
.attr('onclick','$(this).find("form").submit();');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment