vote up 0 vote down star
1

Please Help how to write JQuery coding in Helper function on Rails.

flag

74% accept rate

1 Answer

vote up 2 vote down check

If you have a lot of javascript code then I recommend using a partial instead of trying to place it in strings in a helper method.

<!-- in views/layouts/application.html.erb -->
<% javascript_tag do %>
  <%= render :partial => 'layouts/do_something' %>
<% end %>

<!-- in views/layouts/_do_something.js.erb -->
function do_something() {
  // javascript code goes here
}

You can add ERB tags in that partial as well.

Does this answer your question? I may not have understood it entirely.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.