thanks for reading this post. I\'ve been stuck on an issue with RoR for the past few days. I have a form under index.html.erb as:
A
I know this is an old question but someone can benefit from it.
I think the error is related to this:
JS _doit.js.erb $("#my_list").html("<%= escape_javascript(render(:partial => "doit"))%>");
And finally a partial:
_doit.html.erb.
You are creating a _doit.js.erb
partial to respond to the action doit
in the controller but what you need is a view called doit.js.erb
(without the underscore). Conceptually, the format.js
in your action will respond to a view with the same name of it with extension js.erb
.