Hi,
this is all new to me, so please don’t get upset if my questions are
very obvious. I’m trying to display a ruby variable through JS alert
function in the controller. Hope it makes sense, here’s my example:
myController.rb
class …blah… < ApplicationCon…blah…
def someAction @myRvariable = “lala”
render :text => “alert(<%=@myRvariable%>)”,
:content_type => “text/javascript”
end
end
I would be really grateful for explanation of this,
I still don’t know why it works, and why the
previous doesn’t.
The short answer is that the element (created by link_to_remote) that
submitted the request to the server told the server via the message type
(XMLHttpRequest) that the browser expected JS, not HTML, returned. Your
first attempt used render which returned just the HTML you wanted
displayed.
Your second returned the HTML along with the JS to display it.
hth,
Bill
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.