jQuery + Ajax + Haml. js.erb files not firing
After reading up on a few experiences, I feel this issue might need to be brought up again. Coding in Rails3, I'm trying to implement some smooth Ajax effects when a user tries to create a post on another element of my app. Here's the code I'm concerned with: app/views/posts/new.html.haml - form_for @post, :remote=>true do |f| = f.text_area :content = submit_tag "Post" app/controllers/post_controller.rb def create @comment = Post.new(params[:post]) @comment.save end app/views/posts/create.js.erb: alert("ajax worked!"); I've followed what I saw on the UJS Railscast , but nothing seems to be