How do I write a jquery js.erb to have both html and ruby output for a link_to :remote => in rails 3?
I have the following in my js.erb file, but it doesn't execute the ruby code:
4 //Update the number of followers
5 $('.follow-count').html("#{开发者_Go百科@followers_count} following")
What's the right way to mix both ruby (and access things from the controller) and regular text?
js.erb
files work just like your html.erb
files. You need to use <%= %>
tags instead:
$('.follow-count').html("<%= @followers_count %> following")
精彩评论