I\'m trying to replace the content of a div after clicking on a link using Rails 3, remote_link :remote => true and jQuery.
remote_link :remote => true
So far, I\'ve been able to ge
The solution for me was to also replace the response format with '.html' instead of '.js' in the controller.
What it does is send the response content type as "html/text" instead of "html/javascript", and this, is somehow acceptable to the response parser.