Skip to content

Instantly share code, notes, and snippets.

@pankajmore
Created November 6, 2012 18:53
Show Gist options
  • Save pankajmore/4026700 to your computer and use it in GitHub Desktop.
Save pankajmore/4026700 to your computer and use it in GitHub Desktop.
local variable in js.erb
def show()
@course = OfferedCourse.find(params[:id])
c = "cs123"
respond_to do |format|
format.js
end
end
// show.js.erb
$(".modal-header h3").html("<%= course.course.name %>")
//error
undefined local variable or method `course' for #<#<Class:0x0000000387d040>:0x000000043ebda0>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment