In searching for a solution to a javascript problem, I saw multiple comments about link_to_function
being deprecated in Rails 3. However, I've been able to complete a section of my Rails-3-based project using link_to_function
. It works fine.
Being new Rails, my concern is that I might be using something that is not going to be supported over the long-term or could become a legacy hack. In looking at api.rubyonrails.org, I see link_to_function
clearly called out in the ActionView::Helpers::JavaScriptHelper module as a supported public method for Ruby on Rails v3.0.4. No warnings or other statements about the longevity of the function.
Is there some other approach/method that I should be using instead of link_to_function
in Rails 3? Or is link_to_function
fine to use?
Thanks.