Rifki, just a little fix:
link_to "something", :onclick => "someFunc(<= current_user.email %>)"

On Dec 27, 10:36 am, Rifki Fauzi <[email protected]> wrote:
> unless u add a params you can use an untrobusive javasscript.. something
> like this:
>
> link_to "something", :onclick => "someFunc(current_user.email)"
>
> function someFunc(email){
>   $.ajax({
>     url: '/my_url',
>     type: 'POST',
>     data: {email:  email}, // parameter
>     success: function(data, textStatus, xhr) {
>      // success callback
>     },
>     error: function (data, textStatus, xhr) {
>       // error callback
>     }
>
> }
>
> --
> Posted viahttp://www.ruby-forum.com/.

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to