Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a controller that responds to JS queries:

def show
@event = Event.find(params[:id]) 
respond_to do |format|
format.js
end
end 

My show.js.erb:

$("#modal").html("<%= escape_javascript(render(:partial => @event)) %>");
$('#modal').dialog();

I want to render partial details into pop-up box. In here modal is my hidden div and when I run this code I get some errors and js.erb file run as plain html which having js.erb content.

element.dispatchEvent is not a function

element.tagName is undefined

What is the reason for this? How can I load pop-up box?

share|improve this question

1 Answer

I think you might be missing the partial name? Have you tried (assume the partial is called _widget.html.erb):

escape_javascript(render(:partial => 'widget', :locals => {:event => @event}))

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.