I am using RJS with Prototype. In my controller, I have this code:
def method_name
respond_to do |format|
...
format.html
format.js
end
en
Is it possible to force "reply_do" to use "format.html", is the request an HTML or JAVA or not? If so, how to do it?
source
share