Skip to content

Instantly share code, notes, and snippets.

@almaron
Created July 1, 2012 03:14
Show Gist options
  • Save almaron/3026650 to your computer and use it in GitHub Desktop.
Save almaron/3026650 to your computer and use it in GitHub Desktop.
//View
<%= link_to "Send data", data_request_path, :class => "data_request" %>
//Coffee
$('.data_request').click ->
ref = data_prepare()
$.post {
$(this).attr "href",
{data: ref},
function(data) {alert(data);}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment