akam
akam

Reputation: 311

format.js argument

I've a question about passing argument with format.js

There's my code (create method):

respond_to do |format|
      format.js
  end

I would like to know how can i get a variable value in my create.js.erb

Thanks

Upvotes: 0

Views: 525

Answers (1)

Bohdan
Bohdan

Reputation: 8408

Method is the same as in create.html.erb

<% @user.name %>

Upvotes: 2

Related Questions