Skip to content

Instantly share code, notes, and snippets.

@fahrulazmi
Created April 15, 2013 05:30
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save fahrulazmi/5385905 to your computer and use it in GitHub Desktop.
Save fahrulazmi/5385905 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" data-datum="2">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"+
" <input type='hidden' name='datum' class='datum' value='"+$(this).attr('data-datum')+"'>\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