link_to syntax with rails3 (link_to_remote) and basic javascript not working in a rails3 app?

javascript, link-to, ruby-on-rails-3

Solution

ok it looks like the new unobtrusive javascript changes introduced the problem. see the following post for more information if you run into similar issues http://blog.loopedstrange.com/modest-rubyist-archive/rails-3-ujs-and-csrf-meta-tags

 <%= csrf_meta_tag %>

fixed things for me.

Problem

i am wondering if the basic link_to syntax is completely broken in current rails3 master or if i am doing some wrong syntax here. ``` = link_to "name", nil, :onlick => "alert('Hello world!');" ``` should actually produce an alert on click. very simple. does not work on my rails3 project! (also no error output!) any ideas? for the general link_to syntax i could not find an example where i could combine a link_to_remote with a confirmation, remote and html class (see my try below) ``` = link_to "delete", {:action => "destroy", :remote => true, :method => :delete, :confirm => "#{a.title} wirklich L&ouml;schen?" }, :class => "trash" ``` even the rails3 api does not help me here: http://rails3api.s3.amazonaws.com/index.html help!

Original source